file

In WPF how do I specify the path to a file nested in a Directory using XAML?

I am trying to do this... <Image x:Name="imgGroupImage" Source="Images\unlock.png" Margin="0,0,5,0" /> But I get this error... Cannot convert string 'Images\unlock.png' in attribute 'Source' to object of type 'System.Windows.Media.ImageSource'. Cannot locate resource 'forms/images/unlock.png'. Error at object 'System.Windows.Hierarc...

How can I use C to change the last modified date of a file in Windows?

Is there a C function call that can change the last modified date of a file or directory in Windows? ...

Java File.canWrite() on Vista and super hidden files

I have some code that effectively does this : File file = new File("C:\\Program Files (x86)\\Something\\fred.txt"); System.out.println("file.canWrite() = " + file.canWrite()); It prints true. Now the odd thing is, I can create the file without any exceptions. Furthermore, another program can read the file I've created. The thing is, i...

Size of uploaded file

Do web browsers send the file size in the http header when uploading a file to the server. And if that the case, then, is it possible to refuse the file just by reading the header and not wait for the whole upload process to finish? ...

How to browse for a file in java swing library?

Hey everyone, I was wondering if there was some kind of J tool in the java swing library that opens up a file browser window and allows a user to choose a file. then the ouput of the file would be the absolute path of the chosen file. Thanks in advance, Tomek ...

CodeIgniter - Uploading an Image through a form, store the location of the image in database

Hey folks - I'm trying to upload an image to my site through a form, however it's much more efficient to (rather than bog down the database) just store the location of the image in the database. I'm having trouble with my form and really don't know where to go: <?=form_open('bro/submit_new');?> //other form data Image: <input type="...

Automatically copying files from a Linux machine to a Windows machine

I need to automatically copy files from a linux machine to a windows one every day. I'm looking for something simple and secure like scp, rsync, sftp. Unfortunately, I'm at a loss of how to set this up on the Windows machine. Does anyone know how to do this? ...

Inserting text into an existing file via Java

Hello, I would like to create a simple program (in Java) which edits text files - particularly one which performs inserting arbitrary pieces of text at random positions in a text file. This feature is part of a larger program I am currently writing. Reading the description about java.util.RandomAccessFile, it appears that any write ope...

How can I obtain file meta information in Perl?

I'm looking for a module or some way to obtain the information of the content of a file. The same that the linux "file" command does, but in Perl language. Thanks. ...

Encrypted, password-protected file creation

I'm writing a program that creates a Word document with sensitive information. I'd like to encrypt and password protect the document and distribute it in a self-extracting file so that the user can double-click, provide a password, and then receive the unencrypted file. I'm okay creating the Word document, but I'd like a third-party pro...

Reading a value from a file in a windows batch script

I'm trying to read a value from a file and use it in a subsequent command. I have a file called AppServer.pid which contains the process id of my app server (just the number, it's not a properties file or anything like that). The app server is hanging, so I want to take this value and pass it to the kill command. So my script will be s...

File permission in linux vs. in windows

Hi all, In linux, if I have a file I'm sharing with a group, and I put the file on a USB memory stick, for example, and copy it to a computer that doesn't have the same group or users, does the file have no permissions for anyone on that new computer? What if I bring a linux file that only lets user X to read it to a windows machine? ...

How to launch a file protocol URL with an anchor from Java?

From a Java program, I need to launch the default browser on a local HTML file, pointed to an anchor inside the file. In Java SE 6, the java.awt.Desktop.browse method will open the file, but will not honor the anchor, so something like the following opens the file at the top, but does not page the browser to the anchor: Desktop.getDesk...

Move / Copy File Operations in Java

Is there a standard Java library that handles common file operations such as moving/copying files/folders? ...

Round trip editing of binary documents stored on a server

Hi all, I'm looking to build some functionality for a content management system for the editing of files stored on the server. I'd like to provide users the ability to easily download files locally to their computer, open the file for editing, and save it back to the server. The process should be as seamless as possible. Here's the s...

What's required for Windows to update the "file modified" timestamp?

Obviously it gets updated during a write operation, but are there any non-destructive operations that also force an update? Basically looking to be able to do the equivalent of the *nix touch command, but in C# programmatically. ...

Does file.delete() return true or false for non-existent file?

In java, does file.delete() return true or false where File file refers to a non-existent file? I realize this is kind of a basic question, and easy to very through test, but I'm getting strange results and would appreciate confirmation. ...

Why does my Perl script remove characters from the file?

Hi, I have some issue with a Perl script. It modifies the content of a file, then reopen it to write it, and in the process some characters are lost. All words starting with '%' are deleted from the file. That's pretty annoying because the the % expressions are variable placeholders for dialog boxes. Do you have any idea why? Source fi...

File handler's limit crossing 256

Hi, My code opens more than 256 file handles, So When I run it on solaris machines I am ending up in "Exceeding file handlers limit" error. I have two questions regarding this 1) Is this limit is only for 32 bit softwares or 64 bit softwares also suffer from it. I googled about it and came to know that 64 bit softwares do not have thi...

Probabilistic file verification -- algorithm or libraries?

I am looking for an efficient means to partially check the integrity of "large" data sets over a slow transfer medium. This seems like a common problem as file sizes grow out of proportion to transfer rates. For example, for concrete numbers, a terabyte of data over USB2. Checking that this data is still valid by reading every byte in...