Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

18
votes
12answers
33k views

How to read and write into file using JavaScript

can anybody give the sample code to read and write the into file using JavaScript?
8
votes
4answers
2k views

Directory listener in Java

I have an application in which I want to listen to any changes made to a particular directory. The application should ping me as soon as there are any files added, deleted or updated in that ...
8
votes
6answers
12k views

What tool to use to draw file tree diagram

Given a file tree - a directory with directories in it etc, what software would you recommend to create a diagram of the file-tree as a graphic file that I can embed in a word processor document I ...
8
votes
15answers
1k views

How can you concatenate two huge files with very little spare disk space?

Suppose that you have two huge files (several GB) that you want to concatenate together, but that you have very little spare disk space (let's say a couple hundred MB). That is, given file1 and ...
5
votes
3answers
489 views

Directory.EnumerateFiles => UnauthorizedAccessException

There is a nice new method in .NET 4.0 for getting files in a directory in a streaming way via enumeration. The problem here is that if one wishes to enumerate all files one may not know in advance ...
4
votes
4answers
161 views

Get unique file id in Windows with Java?

I'm looking for a way to get a unique file id in a Java application, and came across this: Unique file identifier in windows Now, I tried the answer supplied by Ashley Henderson himself (the one ...
4
votes
2answers
361 views

How to check if I can create a file in a specific folder in c#?

I need to know if I can create a file in a specific folder, but there are too many things to check such as permissions, duplicate files, etc. I'm looking for something like ...
3
votes
1answer
57 views

How to implement a Python virtual filesystem using shelve

I have set up a Python script that simulates an OS. It has a command prompt and a virtual file system. I am using the shelve module to simulate the file system, being multi-dimensional in order to ...
3
votes
2answers
31 views

Weird directory entries in FAT file system

So I'm trying to figure out how the FAT FS works and got confused by the root directory table. I have two files in the partition: test.txt and innit.eh which results in the following table: The ...
3
votes
3answers
465 views

Virtual Filesystem with C/C++ under Windows

I am currently developing a game which simulates an operating system. Therefore i need an ingame filesystem. Currently, i am using zziplib to be able to load files from a zip archive, however this is ...
3
votes
1answer
54 views

Is it possible to simulate files and directories in a filesystem (linux)?

I would like to be able to give the impression of the presence of files and directories (e.g. the ls command should list them, or the cd command should make directory navigation possible), but ...
3
votes
2answers
423 views

Mount NoSQL DB as File System

I am looking for the way to easily mount one of the NoSQL DB as File System both in Ubuntu 10.04 LTS or CentOs 5 I know there are there are some fuse projects for mongoDB, CouchDB, riak, But I can't ...
3
votes
3answers
452 views

Which is faster/better for caching, File System or Memcached?

I don't think it's clear to me yet, is it faster to read things from a file or from memcached? Why?
3
votes
3answers
253 views

What is the best way to check file system capacity using .Net?

What is the best way in .Net to make sure a path as capacity to store a file. I need to makes sure I have room for the file before I download is becasue the source will not allow the file to be ...
2
votes
1answer
36 views

How to emulate os.path.samefile behaviour on Windows and Python 2.7?

Given two paths I have to compare if they're pointing to the same file or not. In Unix this can be done with os.path.samefile, but as documentation states it's not available in Windows. What's the ...
2
votes
2answers
149 views

How to handle disk full errors in java

I am working on a java application. We read lot of data, manipulate it and then write to files in local m/c. If, in any case, the disk is full then how to handle this exception in java application.
2
votes
5answers
59 views

PHP manipulating the filesystem

What is the best approach between using exec() and PHP functions (like rmdir(), unlink() etc.) when you are manipulating the filesystem ?
2
votes
5answers
94 views

Testing equivalence of file paths

There are two strings in a program. Each of them contains a path to some file or folder. How can I check in C++ whether these paths are to the same file/folder? Can I use the Windows API to do this?
2
votes
3answers
193 views

Linux: detect if an open file/device has been replaced/deleted

Assume the following situation under Linux: A process is continuously reading from an USB-serial converter device (/dev/ttyUSB0). That device is suddenly unplugged and plugged in again (or is ...
2
votes
2answers
105 views

WriteFile function's lpNumberOfBytesWritten parameter

MSDN says, When writing to a non-blocking, byte-mode pipe handle with insufficient buffer space, WriteFile returns TRUE with *lpNumberOfBytesWritten < nNumberOfBytesToWrite. For a file or ...
2
votes
4answers
299 views

Delete files from git index when they are already deleted from fs

I have a bunch of files deleted from the fs and listed as deleted in git status. How can I stage this changes faster then running git rm for each file?
2
votes
3answers
201 views

Is the file mutex in Linux? How to implement it?

In windows, if I open a file with MS Word, then try to delete it. The system will stop me. It prevents the file being deleted. There is a similar mechanism in linux? How can I implement it when ...
2
votes
2answers
69 views

Prepending Data to a File

There's no way in any operating system I'm aware of for a program to prepend data to a file efficiently. And yet, this doesn't seem difficult -- the file system can add another extent to a file ...
2
votes
5answers
498 views

How can I determine if a subdirectory exists in C#?

In C#, how can one determine if a subdirectory exists? Is this neccesary when calling CreateSubDirectory?
2
votes
2answers
2k views

Can I have a write permission in android Read-only file system?

Whenever I try to update framework-res.apk on system/framework folder on my G1 it gives me an error:-- failed to copy 'framework-res.apk' to '/system/framework/framework-res.apk': Read-only file ...
2
votes
1answer
263 views

Is it possible to read-lock a file?

I'm developing an application which checks for changes made to a file by a separate program (not written by me). If a change is detected, it opens the file, reads the last line, then closes the file. ...
2
votes
4answers
212 views

Get a list of removable drives with javascript?

My situation is this: I want to have a pop-up box open from your browser via JavaScript then I want the pop-up box to display all removable devices it can see attached to your computer, then you will ...
2
votes
5answers
4k views

How to have a FileSystemWatcher thread run forever?

I need to have a FileSystemWatcher run in an infinite loop to monitor a file for changes, but this file will only change every few days, and maybe only once a week. In the MSDN sample of a ...
2
votes
9answers
7k views

How to get all file attributes including author, title, mp3 tags, etc, in one sweep

I would like to write all meta data (including advanced summary properties) for my files in a windows folder to a csv file. Is there a way to collect all the attributes? I see mp3 files have a ...
1
vote
1answer
40 views

Hadoop - how are map-reduce tasks know which part of a file to handle?

I've been starting to learn hadoop, and currently I'm trying to process log files that are not too well structured - in that the value I normally use for the M/R key is typiclly found at the top of ...
1
vote
1answer
118 views

Directoy.Delete(path, true) -> IOException : the directory is not empty -> Different owners on Win7

On uninstalling, I get a IOException when trying to delete a directory. 'The directory is not empty'. I tried different methods, listed below, but nothing works. The files that are left behind (and ...
1
vote
2answers
245 views

Android: Writing file on system partition

I am trying to write a file, generated by my app, onto the system partition. As I can not create an FileOutputStream inside my app I create the file in the data directory of my app, correct the ...
1
vote
1answer
76 views

How to use FileSystem API to debug Javascript? The execution order problem

I was debugging a complicated program written in Javascript. I need to watch the change of a large matrix. It is not convenient to see each elements in the matrix using Chrome Inspect Element. So, I ...
1
vote
2answers
386 views

Walking a directory with Node.js

I've got a problem with this code in node.js. I want to recursively walk through a directory tree and apply the callback action to every file in the tree. This is my code at the moment: var fs = ...
1
vote
1answer
88 views

in Linux kernel how to identify the opened file when we can get “struct file”

In linux kernel how to identify the opened files? When we can get the information about inodes or (struct file) or dentry? Which structure can help us to identify the opened files which is the same ...
1
vote
1answer
74 views

data integrity issue with ntfs but not ext3

In my application I am continually writing data to file1 and flushing it to the device. In another thread, I am reading data from file1 and writing it to file2. Every time I do the fwrite + fflush ...
1
vote
2answers
566 views

How to know if a folder of file is being used by another process?

I know there are tens of questions already about "the file being used by another process". But they all have the problem of trying to read a file or write to a file that is already being used by ...
1
vote
1answer
929 views

Make Android sdcard read-only

I need to test a scenario where the sdcard (or atleast a particular directory) is read-only. Does anyone know how I can do this on the emulator? Basically I want to mount the sdcard as read-only. I ...
1
vote
2answers
87 views

Accessing file meta-data within Python/wxPython

I would like to write a Python/wxPython app that implements wx.FileDropTarget. This part is easy. I would also like to show the file icon as it is dragged over the app window and then display a proxy ...
1
vote
2answers
189 views

How to use IIS app_offline.htm file with Azure

I have a brilliantly designed app_offline.htm file that I'd like to display on my site periodically when I'm doing things like backing up the DB. On a server with a real file system, this wouldn't be ...
1
vote
2answers
153 views

How to rename a file and preserve creation date in Python

I know that the creation date isn't stored in the filesystem itself, but I'm encountering the problem that when I use os.rename, it's updating the creation date of the files I'm working with. Is it ...
1
vote
1answer
71 views

Replacing file content without readers clients access interruption

There is a service which constantly writes new content to a file: using (var stream = File.Create(FileName)) // overwrites the file { stream.Write(data, 0, data.Length); } The file is ...
1
vote
4answers
220 views

php - moving up a directory

I'm creating a directory in a php script, moving into that directory and doing some stuff. This part works fine. Now, I want to move out of this directory and delete it. Any pointers on how to do ...
1
vote
4answers
354 views

Save documents as BLOB in SQL or on file system

For a (.net) web application I need to allow users to store many documents (pdf, .docx etc.). My first thoughts were to save all the documents as a BLOB in a SQL (Express) database. But how will my ...
1
vote
1answer
28 views

Free library for mounting *nix & mac file systems for .NET?

My application is Microsoft.NET 3.5, C#. It works with windows file systems using .NET API like File.Exists, Directory.GetFiles/GetDirectories, File.ReadAllText and similar. I need to have an ability ...
1
vote
1answer
50 views

What's a very efficient way to have a bulk mailer app keep accurate track of its progress?

We have a console application (currently .NET) that sends out mail in bulk to people that have subscribed to a mailing list. We are re-implementing this application because of limitations that it ...
1
vote
5answers
329 views

Best .NET way to move many files to and from various directories?

I've created a program that moves files to and from various directories. An issue I've come across is when you're trying to move a file and some other program is still using it. And you get an error. ...
1
vote
3answers
108 views

What is a simple way to get ACID transactions with persistence on the local file system (in Java)?

I'm working on a small (java) project where a website needs to maintain a (preferably comma-separated) list of registered e-mail addresses, nothing else, and be able to check if an address is in the ...
1
vote
9answers
2k views

root folder equivalent in windows

Is C drive treated as the root folder in windows when one says \folder1\folder2\ in linux and windows C:\folder1\folder2.
0
votes
0answers
10 views

Using WebSphere's API to access the OperatingSystem

I want to write a software that unifies logs from different servers, all WebSphere, all from the same cell. The idea is to get a description one log that describes an entire system - composed of ...

1 2