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

django-filebrowser - how can i automatically create missing folders for images?

I am using python 3.3 and django 1.6 and working with django-filebrowser. I would like to automatically create the any missing folders based on the description in the model class. For example if the model says this: class Marketing(models.Model): …
user1026169
  • 5,345
  • 5
  • 21
  • 35
0
votes
1 answer

SharePoint - Document Filtering (Tags/Metadata?)

I'm creating a SharePoint site which will be used to dynamically store and display documents on various pages, among other things. Is the following possible? My view is to have one central Document Library which will include all files. Files with…
Gaz
  • 101
  • 1
  • 13
0
votes
1 answer

Monitor Windows Explorer Events

I'm creating a simple program that manages some files and that program must keep track of file movements made by user. (I'm not worried at this point about catching all running Windos Explorer's windows and about keeping the program always activated…
Daniel Möller
  • 84,878
  • 18
  • 192
  • 214
0
votes
1 answer

Moved Xcode folder to new computer, now TONS of files are missing

You can only imagine how frustrated I am, trying to go through my old computer finding where all the resources are and putting them on the new one. Please tell me how I can, next time, prevent this from happening. When I copy files into Xcode, I…
user3271769
0
votes
2 answers

retrieve last modified filename from nested directories

I have a root directory and inside that further directories are there. These directories contains various Html and ncx files. I have to get the name of the file that has been last modified. I am using this code string filePath =…
user
  • 128
  • 2
  • 12
0
votes
0 answers

WAMP: Listen for file change notifications in directory (recursive)

The closest answer to this question I have found is here. I want to implement a file mirroring application, written in PHP/MySQL, running on WAMP. My problem is how to monitor if files are changed, added or deleted from a file system directory,…
Jodes
  • 14,118
  • 26
  • 97
  • 156
0
votes
1 answer

iOS: How do i access images from IAP Apple-hosted content?

I want to add an In App Purchase functionality to my iOS app (for the first time) where i can enable users to download more content - a set of images. I have already read many articles, but as long as i understand how to manage IAP, i'm not clear…
cyborg86pl
  • 2,597
  • 2
  • 26
  • 43
0
votes
0 answers

Batch rename list of files based on other properties?

I have two folders. Folder A contains high resolution images and folder B low resolution images. Images of Folder B are located in the server. I need to change all images to a higher resolution version contained in local folder A, without changing…
0
votes
1 answer

IOS application should take picture and store it in app folder, I want to confirm this

I'm new to ios, please help me out. - (IBAction)btn_actionTakePicture:(UIButton *)sender { UIImagePickerController *picker = [[UIImagePickerController alloc] init]; picker.delegate = self; picker.allowsEditing = YES; …
lost
  • 81
  • 1
  • 2
  • 8
0
votes
1 answer

Windows-like online file managment

I want to make a page on a website where a user can manage files. Download, upload, change name and drag to another directory. Like the folders work in windows, but online. Is there something out there that can do this? I am working in Laravel btw.
JeffreyR
  • 591
  • 2
  • 9
  • 22
0
votes
1 answer

Quickly find the full path to an app whose name contains a specific phrase

I'm working on a little app that acts as a plugin for a 3rd party app. For it to function, I need to access a saved file from the 3rd party app ("other app" from here). In newer versions, the other app keeps this in ~/Application Support/Test…
Tiago
  • 1,984
  • 1
  • 21
  • 43
0
votes
1 answer

return stream of url file with python urllib2

I've got a piece of Python code that gets a url with the right permissions from Amazon S3 and copies it to a local directory file: def fileDownload(self, some_Id, localDir, name, range=None): # [...] something happens here # get the Amazon…
719016
  • 9,922
  • 20
  • 85
  • 158
0
votes
2 answers

"Hijacking" Windows file open events using Python

I need to combine directory watching with event "hijacking". Basically, I want my Python program to listen to a directory (and its subdirs) for when a user double-clicks (i.e. opens/acesses) the file. At that point, I want my prgm to stop the events…
0
votes
1 answer

Joomla componente/module to list files on folders and group them by subfolders

Im new using Joomla version 2.5, and I need to show on an article or through a component or module, a the whole list of files stored on an specific folder with subfolders to guest users, in order to allow them downloading files from it. Also, I need…
0
votes
3 answers

Best practice for moving C# .NET project files across servers

What is the best strategy for making changes to a specific file within a C# .NET project and a DEV server and then moving that file to a different environment, say server B? I noticed it always wants me to recompile on the destination server and I…
ajdams
  • 2,276
  • 14
  • 20