Questions tagged [file-management]

File Management relates to the efficient control over, usage of and access to files by users and computer operating systems

File Management topics covered by this tag include

  • Popular computer operating systems
  • Project management software and processes
  • Web server caching algoritms
  • Software development tools, such as XCode and phpCake
538 questions
0
votes
1 answer

Unable to Read from File while using ReadFIle() function in C++

I am facing some issues while reading data from file using ReadFile() function of C++ (Microsoft specific probably). Here is my code Write On File void ClientA::SharePublicKey() { printf("Sharing Public Key\n"); HANDLE hFile = NULL; …
Naseef Chowdhury
  • 2,357
  • 3
  • 28
  • 52
0
votes
1 answer

Script to copy files on CD and not on hard disk to a new directory

I need to copy files from a set of CDs that have a lot of duplicate content, with each other, and with what's already on my hard disk. The file names of identical files are not the same, and are in sub-directories of different names. I want to…
0
votes
1 answer

Save file in iOS application directory

I have a an app in both Android and iOS, the app is supposed to download and save some files on the device with a click of a button. I manage the directories in Android, and I specify the url of the file with this…
m0j1
  • 4,067
  • 8
  • 31
  • 54
0
votes
0 answers

Accessing cache directory of all apps on iDevice

Is there any way to access cache directory for all applications on an iDevice programmatically? For clarification, I know the way to access the cache directory for a specific app, but does there exist a default directory that stores all caches the…
mojo
  • 5
  • 4
0
votes
2 answers

Writing, reading, and splitting files in C

I'm really new at C programing, so I need to read a big file, split it every point, and write in a new file what I got when splitting, so I have to write several files, the problem is when I'm naming the new files. I've been working in this proyect…
cafej
  • 85
  • 1
  • 3
  • 13
0
votes
1 answer

Where to begin with managing web servers / business document file management

I've inherited a couple of web servers - one linux, one windows - with a few sites on them - nothing too essential and I'd like to test out setting up back-ups for the servers to both a local machine and a cloud server, and then also use the cloud…
0
votes
0 answers

R: How to check which HTML files were incompletely downloaded

I am on the lookout for a function in R to check if an HTML file was incompletely downloaded, i.e. to read just the last few lines of a given set of files and check if they end with "". What would be the best way to check for this? Related…
Tom Wenseleers
  • 7,535
  • 7
  • 63
  • 103
0
votes
1 answer

Python, check when file is saved

The goal is to do something every time a file from a list is modified (saved). I have no idea to proceed. The end goal should be something like this: files = ['file1.txt', 'file2.txt', 'file3,txt'] if (one of the files in files is modified): …
VictorVH
  • 327
  • 1
  • 4
  • 14
0
votes
1 answer

Path Not Found error when copying files using wildcard

Source Code: Const OverwriteExisting = TRUE Dim strSafeDate, strSafeTime, strDateTime strSafeDate = Right("0" & DatePart("d",Date), 2) & "." & Right("0" & DatePart("m",Date), 2) & "." & DatePart("yyyy",Date) strSafeTime = Right("0" & Hour(Now), 2)…
0
votes
0 answers

Delete oldest file from Documents folder in IOS

I would like to know if there is any way to delete files in Documents folder in iOS via Date or something like the oldest file present in the Documents folder. My app downloads music files from the server and then stores it in the Documents folder.…
0
votes
1 answer

View Controller Keeps Disappearing

Whenever I close Xcode and then open it again, some file gets deleted and I have to start all over again. When I checked the file status it says locally deleted. Is there a way I can fix this : Thanks
codegirl
  • 15
  • 3
0
votes
2 answers

Append text in exclusively opened file

I am trying to implement locking scenario where same file is accessed by multiple threads at same time or at different time. While testing it seems code is overwriting the existing line instead of appending new line. namespace SMPPService { public…
Hammad Bukhari
  • 459
  • 2
  • 11
  • 30
0
votes
1 answer

Is there a specific place files need to go in an Xcode project's File Navigator?

On the left hand side of Xcode, in the "Navigator" pane, in the "Files" view, is a list of all the various files that make up my project. I am currently working through an introduction to Sprite Kit. I noticed that I created some of my new files…
stev
  • 19
  • 4
0
votes
2 answers

iOS saving files to single bundle/container

Is there any way I can save several files to a kind of bundle/package/container inside an iOS app. I want to store the database, images, textfiles, etc on it but want to be able to backup/send/share that single bundle/container when needed. I…
nizx
  • 690
  • 1
  • 6
  • 13
0
votes
4 answers

How do I save a SQLite database with the .db extension?

Super beginner here. I've created a SQLite database and I want to view it with the SQLiteManager plugin, but my database doesn't add the .db extension on my (virtual) device. So far I've had to copy the file to my computer, change the extension,…
NSouth
  • 5,067
  • 7
  • 48
  • 83