file

Remove readonly of Folder from c#

How can i programatically remove the readonly attribute of folder from c# code ? ...

Python+parsing custom config file

I have a quite big custom made config file I need to extract data from once a week. This is an "in house" config file which doesn't comply to any know standard like INI or such. My quick and dirty approach was to use re to search for the section header I want and then extract the one or 2 lines of information under this header that I wa...

Cocoa: basic problem getting string from file

Is there some blindingly obvious reason why this is producing a nil string instead of the actual text content of the file? NSString *fromFile = [NSString stringWithContentsOfFile: @"file://localhost/Users/username/Desktop/test.txt"]; NSLog(@"%@", fromFile); PRINTS: "(null)" The file is a plain ASCII text file ...

Autostart download of file on website?

How do i automaticly start a file for download when a user clicks a link? For example when a user clicks a link that allows them to download a image. Like it works on www.iStockphoto.com ...

Windows Mobile - open file in emulator

I am writing a C++ application for Windows Mobile and cannot find any solution to my problem. In my application I want to open a WAV file. There are 2 problems for me: what function shall I use to open and close a file? Is fopen sufficient? where shall I put the WAV file on my PC's harddrive to open it from the emulator? And what direc...

How can I ensure correct load of dynamic JavaScript files?

I have an app where generated HTML pages specify a single JavaScript file: <script language="JavaScript" src="/global.js"></script> In global.js is the following code, to load a single user-defined user.js file: var UserJsFile = document.createElement("script"); UserJsFile.type = "text/javascript"; UserJsFile.src = "/user.js"; docume...

How do I change, delete, or insert a line in a file, or append to the beginning of a file in Perl?

People keep asking this question and I keep answering it with the same answer from perlfaq5. Now it's something we can point to on Stackoverflow. ...

PHP delete from file

Hey guys, ive search around and nothing ius QUITE what i need, i am horrible with php thus far. Basically, i have a text file serving as a database. each line has the form: id|lat|lng|details where: id is a unique integer, lat and lng are float and string details. I have a client page (locked under user-pass) in which the user ente...

reading binary datafile and writing into decimal no file

exp data is generated by my mc scaler card as a binary file with first 511 bytes as header and then 24 bit data followed by four bit roi data. i am not a expert in programming. i do understand a little. I would like to convert this file into a file (without header) decimal nos with first col as channel no (1 to 8191) then the data (24 bi...

JQuery Ajax Plugin File Upload simplify code

Hi I am currently using Valums JQuery File Upload plugin. The plugin is very convenient to use, but I do not like how the code looks. Because it occupied inside document.ready such as: $(document).ready(function() { var button = $('#button1'), interval; new AjaxUpload(button, { action: 'http://test.com/user/uploadfile', n...

Parse a log4j log file

We have several applications that use log4j for logging. I need to get a log4j parser working so we can combine multiple log files and run automated analysis on them. I'm not looking to reinvent the wheel, so can someone point me to a decent pre-existing parser? I do have the log4j conversion pattern if that helps. If not, I'll have to ...

Truncate the beginning of a log file in .NET

I have an VB.NET app that writes the status to a log file in text format. Over time, the file is getting large and I wanted to know if there is an efficient way to truncate the beginning of the file. To make things easier, I am looking to specify a file size (say 2-3 mb) and I am writing the log using a StreamWriter: Using strm As N...

Library for remote file access in linux?

Hi all, Im working on a program to access files from remote hosts. Basically what i want to do is logging in remote Windows/Linux host with valid credentials, check what files exist in a specific folder, read those files. Is there a library I can use to fulfill the above purpose in Linux? Thanks. Additional info: I'm using C. The remo...

How do I take an image off a website and save it to NSDocumentDirectory

Hi. I am trying to make a app to take photos off of a website, and save them to the NSDocumentDirectory for later usage. So far I have failed in my attempts, and am wondering how to do it. Not much more explanation is needed, but here are a few of my (failed) tries: One: NSString *path = @"http://miniwidgit.webs.com/TabRight2.png"; NSF...

In Flex how can I set the <input type=file/> value

I have an AIR app that download a webpage using HTMLLoader and I want to set the value of a form input element with a type=file. I've read that this is not allowed for security reasons but I've also found a Firefox extension that does it. Below is the js function they use. If a Firefox extension can do it, is there now way for an AIR app...

PHP: Can include a file that file_exists() says doesn't exist

In my script, I set the include path (so another part of the application can include files too), check that a file exists, and include it. However, after I set the include path, file_exists() reports that the file does not exist, yet I can still include the same file. <?php $include_path = realpath('path/to/some/directory'); if(!is...

The last modified time of a file is a 13 digit number. What does it mean?

long lastmodify = f.lastModified(); System.out.println("File Lost Modify:"+lastmodify); I am running the above code of file("f"), but it displays the last modified time is:1267082998588 I am confusing, is this is time or not.? Actually what it is? ...

how to upload browse file in asp

I am trying to upload browse file in asp and succeeded but i have to save it as user corresponding id can anybody help me and how to see this record on id basis ...

Where will be create a new file in java, when path is not given?

In java, File f; f = new File("myfile.txt"); if (!f.exists()) { f.createNewFile(); } when excute the above code,which path is assigned in default, while specific path is not given? ...

change extension obfuscate XML file contents

I have SlideShowPro, a Flash photo app that loads an XML file with the paths to the images. Now I don't want people to go sniff in the XML file to get to the images. I tried changing the file images.xml to spacer.gif and it seems to work fine. But I would like to know if I would run into any problems changing the extension. btw already...