0
votes
3answers
45 views

Opening Files From Any Directory (Python)

Im writing this basic code that runs files on my computer but right now it can only open files from the directory it is in. is there a way to open files from anywhere on my computer or would i have to ...
0
votes
1answer
33 views

What is the max file size allowed by the system?

I am given this information, but am not sure how to approach this problem: Double-Indirect Addressing Disk block size = 1k File Point is 64 bits (8 bytes) Block can hold 128 file pointers Inode ...
0
votes
1answer
44 views

Why 4k is considered to be standard in file system

In Operating System, 4k is the default size of a block. When the HDD have more and more capacity to store data; speed of seeking is increased..., Why this standard is not change?
0
votes
1answer
54 views

Does Cassandra lock files in the data directory during reads/writes?

I know that snapshots can be taken while Cassandra is online. What this does is create a snapshot sub-directory in each column family directory, and places a copy of the column family inside of it. ...
0
votes
0answers
90 views

C# replacing protected System file ex “notepad.exe”

I have attempted to use the following function to give the current running code control over the file. But I cant get it to run without throwing an exception. I've searched the web and have still not ...
1
vote
2answers
78 views

Fast calculation of the size and counting all files in a directory and subdirectories using python (cross platform)

How could i quickly calculate the size of a large directory while counting all the files in python cross platform, this is my current code but it is very slow on large file numbers(over 100000): ...
1
vote
2answers
377 views

Python os.listDir throws “WindowsError: [Error 5] Access is denied:” on some folders

Basically I have a FileExplorer class written in Python 2.6. It works great, I can navigate through drives, folders, etc. However, when I get to a specific folder 'C:\Documents and Settings/.*'*, ...
0
votes
0answers
45 views

how to hide ftp connection info

in windows operating systems we can use ftp commands in file as parameters to ftp.exe as following: ftp -s:filename The parameters filename can contain password, username .... and other obvious ...
2
votes
3answers
209 views

File and Folder Attributes - Programming API

I knew that PHP is able to read file content by different ways, for example: fread, file_get_contents, file, readfile, etc. Currently, I am looking for an API that can read real index of files and ...
0
votes
1answer
44 views

How to retrieve the application in Java that is currently associated with a certain file [duplicate]

Possible Duplicate: How to open a file with the default associated program As in the title, how to determine the application that will be used by the OS to open a file? For example I'd like ...
0
votes
2answers
105 views

FAT System Identification of free space and structure of entry files?

Been seaching google for a good explanation for how FAT systems identify free space and the structure of FAT Entry files. Alot of the explanations ive found are quite hard to follow can anyone help ...
-1
votes
4answers
318 views

Rename files with Python

I am trying to use python to rename over 1000 files in a windows directory that have this naming convention: The.Woman.In.Black.2012.720p.BluRay.x264 The desired naming convention is: The Woman In ...
1
vote
0answers
52 views

Duplicating files by timestamp in Python

I'm using a program that takes a picture every hour along with 3 other metadata files. All of these are stored in a folder. Through Terminal I made the program run ever 10 minutes. However I still ...
2
votes
2answers
306 views

Working of Open System Call

I am reading about Memory Mapped Files, the souce says it is faster than traditional methods to open a file or read a file such as an open system call and read system call respectively without giving ...
0
votes
2answers
177 views

Where is the metadata? [closed]

So i was just playing with files like opening with hex editor and doing some stuff. and i found one thing... i can access the data stored in a file but where are the metadata like file property, time ...
3
votes
1answer
116 views

Check if a file is a system / OS file?

In Java, is there a way to check if a given File object is a protected system file? Some examples of File objects which I'd expect to be classified as protected: Windows C:\WINDOWS\ ...
-2
votes
2answers
212 views

Is there any difference in file size on 32bit and 64 bit platforms, OS could be any

I would like to display file size on one of my application. Our application most of the unix and windows platforms that to be 32bit and 64bit. Is there any difference in file size on 32bit and 64 bit ...
0
votes
1answer
104 views

How does File System monitoring works in theory?

I'm working paper about remote file synchronization (just like Dropbox). However I'm having problems finding information about how the OS File System (FS) sends file events (or how are them generated ...
1
vote
1answer
175 views

fwrite() and fread() in mac os x lion is taking long time in case of a shared file between Linux device and Mac

I have a simple Mac C program which writes data to a raw data file located on a USB device connected to a Mac computer. The raw data file is stored in the device which is FAT32 file formatted. The ...
1
vote
1answer
231 views

How do Video Game Emulators Work? [closed]

I am curious as to how emulators work. What are they written in? Does it have to emulate even the graphics? How do people get the games uploaded as roms? Do they simulate the systems OS?
-1
votes
2answers
514 views

The max number of files in one directory?

Is there any limitation on number of files in one directory (in any host) ? If I have a directory with 30k (named from 1 to 3ok) files and another one with only 10 is there a major difference in ...
0
votes
2answers
939 views

What is the difference between a directory and a file with no extension? [closed]

On nearly all types of computers (if not all), folders have no extension. So I was wondering, what is the difference between a directory and a file with no extension? Don't they have the same name?
2
votes
2answers
86 views

Get an arbitrary file from a directory tree

I'd like to get a path to an arbitrary text file (with .txt suffix) which is present somewhere in the directory tree. The file should not be hidden or in hidden directory. I tried to write the code ...
4
votes
1answer
325 views

Opening files in a directory with python, trouble with encoding

import os listing = os.listdir(path) for infile in listing: print infile f = open(os.path.join(path, infile), 'r') I have made a script in python that iterates through all files in a ...
0
votes
1answer
360 views

double click a file to run python script. how to get that file as an input?

I want to be able to create a program that can save text files with my own extension at the end. later the user should be able to double click on that file to run the program and open that file. I ...
2
votes
7answers
240 views

How come a file doesn't get written until I stop the program?

I'm running a test, and found that the file doesn't actually get written until I control-C to abort the program. Can anyone explain why that would happen? I expected it to write at the same time, so ...
0
votes
1answer
2k views

VB script: if file exists then run if not then end

I'm looking to use a script to go about disabling a file (REAgentc.exe) on Windows 7 machines and if it does not exist (i.e. on XP machines) then end. Below is what I've got so far but can anyone ...
1
vote
2answers
46 views

File searching in Operating Systems

How does any operating system searches a file in its directories, when a user submits a file name? I have been given a task to make a file searching software for Window. Does OS use Parent child ...
2
votes
1answer
104 views

Processing files in C under different operating systems

I am working with files in C. They are very, very huge files. I read and write to these files (they are just formatted text files). I give no extension to them; I just say fopen("filename","r"). Now ...
0
votes
4answers
725 views

Carriage Return and Line Feed windows and Linux java application

I am working on a integration test application, this is what I am doing in the test case, I read a test input file,which is stored in the cvs , write it to a file in the file system,the application ...
2
votes
2answers
116 views

Is File.length platform and filesystem independant

Image I catch a stream of the net and count how many bytes went through my hands, I write this stream to a file. Is the number of counted bytes guranteed to be equal to the file.length() result (after ...
2
votes
3answers
104 views

Are there operating systems that aren't based off of or don't use a file/directory system?

It seems like there isn't anything inherent in an operating system that would necessarily require that sort of abstraction/metaphor. If so, what are they? Are they still used anywhere? I'd be ...
0
votes
1answer
69 views

What are the smart ways to check if two files are same?

I am looking for smart and efficient ways that will check if two files are completely same. The program will loop all the folders recursively and they may include very large files. So I decided to ...
7
votes
4answers
1k views

python: need to close file from mkstemp if I use fdopen?

Which of the following is more correct? fi, path = tempfile.mkstemp() f = os.fdopen(fi, "w") f.write(res) f.close() os.close(fi) or: fi, path = tempfile.mkstemp() f = os.fdopen(fi, "w") ...
0
votes
2answers
284 views

File Access method in Linux

Read in text books that there are mainly two file access methods; sequential and direct. Which one we are using in Linux? In read command we are giving the how much bytes to read and to which buffer. ...
1
vote
2answers
246 views

Opening another file from Python and terminate script

I am trying to figure out the best solution to accomplish this. Basically, I want to open another program from Python (doesn't matter, could be an image, executable, etc). I have tried os.system and ...
0
votes
2answers
1k views

Renaming file names containing spaces

I am writing a simple Python script to rename all files in a directory to replace all spaces in the file name with hyphens. I have the following which is crashing on os.rename import os path = ...
1
vote
4answers
549 views

flush without sync

From what I've read, flush pushes data into the OS buffers and sync makes sure that data goes down to the storage media. So, if you want to be sure that data is actually written to disk, you need to ...
2
votes
4answers
611 views

How to output a directory tree as HTML?

Here's what I've got so far: project_dir = '/my/project/dir' project_depth = len(project_dir.split(os.path.sep)) xml_files = [] for dirpath, dirnames, filenames in os.walk(project_dir): for ...
2
votes
1answer
354 views

Python can't list my directory

I have this code in my Bottle app to list a directory full of files: [Post(name[:-3]) for name in os.listdir("posts")] On my local computer, it's fine. But on my server I am consistently getting ...
3
votes
1answer
539 views

does closing a file opened with os.fdopen close the os-level fd?

I'm making a temporary file with tempfile.mkstemp(). It returns an os-level fd along with the path to the file. I want to os.fdopen() the os-level file descriptor to write to it. If I then close the ...
13
votes
3answers
2k views

How expensive is File.exists in Java

I am wondering how File.exists() works. I'm not very aware of how filesystems work, so I should maybe start reading there first. But for a quick pre information: Is a call to File.exists() a single ...
1
vote
2answers
209 views

Is there something about the os module I'm not getting?

For the last half hour I've been trying to figure out what is wrong with this code. It should be very straight forward. I've practically copied it out of the documentation at this point. But no matter ...
0
votes
0answers
354 views

c filesystem programming and implementaion [closed]

Everybody out there I have a strange question i have to file ram.txt or shyam.txt which got some text. Now I want to join them mean the info in shyam append to ram ,or shayam info should be ...
0
votes
3answers
781 views

JAVA BufferedOutputStream flush slow with correct filesize

I am using a BufferedOutputStream to write to a file. While debugging I noticed that the flush operation takes very long even if the OS shows that the file has got the final size. My theory: The ...
1
vote
4answers
5k views

accessing files with spaces in filename from java

I want to access files in a directory which have spaces in filename from a java program but it doesnot access file. Scenario is i have names of file in a file . iread file names from that file and ...
1
vote
3answers
742 views

Does creation of new File(filename) object associate a process file descriptor with the object?

Does the following statement: new File(filename); associate a process file descriptor with the File object? Tried to search the same but without any success. Ideally, it should not statically ...
2
votes
2answers
811 views

python: can't delete open file from os.execl'd python script on windows

Consider delfoo.py and its partner, lol.py: #----delfoo.py----- import os os.unlink("foo.txt") #----lol.py---- import os,sys f = open("foo.txt","w") f.write("HI") #not closing f on purpose! ...
3
votes
3answers
371 views

What's going on (in the OS level) when I'm reading/writing a file?

Let's say one program is reading file F.txt, and another program is writing to this file at the same moment. (When I'm thinking about how would I implement this functionality if I were a system ...
1
vote
2answers
224 views

Flex Accessing OS System Icons

Hi does anyone know I can display the icon of a file that has been associated with that file in the native OS. I have a tile list of a folder's contents. For images, I display the image, for ...

1 2