Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

54
votes
7answers
41k views

What's the fastest way to delete a large folder in Windows? [closed]

I want to delete a folder that contains thousands of files and folders. If I use Windows Explorer to delete the folder it can take 10-15 minutes (not always, but often). Is there a faster way in ...
26
votes
22answers
5k views

Best file manager for developers [closed]

Developers have high demands, so I think many of us are unsatisfied with the average file manager shipped with the operating system. What is your file manager of choice, and why?
14
votes
5answers
1k views

How do I stop emacs dired mode from opening so many buffers?

When I use dired mode to browse around and find a file I want to open in Emacs, dired opens a new buffer for each directory I visit when looking for the file each time I select a directory with Enter, ...
10
votes
8answers
1k views

Delete a large number (>100K) of files with c# whilst maintaining performance in a web application?

I am trying to remove a large number of files from a location (by large I mean over 100000), whereby the action is initated from a web page. Obviously I could just use string[] files = ...
10
votes
2answers
4k views

How to add js file to my xcode project?

I add some js and css files in my xcode left project tree. but when I build this project , I got the warning : no rule to process file '$(PROJECT_DIR)/js/builder.js' of type sourcecode.javascript for ...
9
votes
3answers
5k views

Rename file in Cocoa?

How would I rename a file, keeping the file in the same directory? I have a string containing a full path to a file, and a string containing a the new filename (and no path), for example: NSString ...
6
votes
6answers
3k views

Tips for managing a large number of files?

There are some very good questions here on SO about file management and storing within a large project. Storing Images in DB - Yea or Nay? Would you store binary data in database or in file ...
5
votes
2answers
147 views

How to organise the file structure of my already working plugin system?

I am working on a project whose main design guiding principle is extensibility. I implemented a plugin system by defining a metaclass that register - with a class method - the class name of any ...
5
votes
2answers
437 views

Change file owner in Windows

Is there an API in Windows similar to Linux's chown?
5
votes
13answers
2k views

Best way to store/retrieve millions of files when their meta-data is in a SQL Database

I have a process that's going to initially generate 3-4 million PDF files, and continue at the rate of 80K/day. They'll be pretty small (50K) each, but what I'm worried about is how to manage the ...
4
votes
2answers
226 views

NSFileManager unique file names

I need a quick and easy way to store files with unique file names on iOS. I need to prefix the file with a string, and then append the generated unique identifier to the end. I was hoping ...
4
votes
3answers
818 views

Trying to add files, get error message: The operation couldn't be completed. File exists

I need to replace some images in my application. As a result I deleted them from Xcode and now when I try to add them again I get this error: and I am sure that that file does not exist in the ...
4
votes
5answers
1k views

Optimum web folder structure for ~250,000 images

I will have around 200,000 images as part of my website. Each image will be stored 3 times: full size, thumbnail, larger thumbnail. Full size images are around 50Kb to 500Kb. Normal tech: Linux, ...
3
votes
2answers
195 views

Moving files to appropriate location based on their extension

I have a cleanup script that moves files based on their extension to appropriate preset locations. For example, a file with the extension .xls will be moved to ~\XLS folder, .sql to ~\SQL and so on. ...
3
votes
1answer
358 views

Lock file in Xcode 4

I've got a simple question. In Xcode 3 I was able to lock a file by clicking on the little lock icon at the top of each file. I'm missing this function in Xcode 4. I think I'm just blind. Can you help ...
2
votes
1answer
126 views

Efficient and safe storage of string pairs C++

I am making a volume (voxel) based terrain generation engine using polyvox, and will be need to store lots of volume information. The Polyvox library makes it easy to pull out the values. However the ...
2
votes
2answers
144 views

Should I store file information in a database for a php based file manager?

I'm looking to build a basic file management component for the system I'm working on (php, javascript, sencha). I'm trying to convince myself one way or the other on whether I need to store extra ...
2
votes
5answers
578 views

dired mode single window? (emacs)

is there a way to have dired operate in a single window so that when I traverse through directories I don't have n number of dired buffers for the intermediate directories? However - if I start ...
2
votes
3answers
4k views

How to make Windows Explorer always use detail view?

As a developer I work with a lot of source code files etc. and I need to copy these around, rename, etc. I'm sure any developer knows the drill. Windows Explorer is really "helpful" in suggesting ...
2
votes
7answers
574 views

Good file management software

Currently all our files are stored on a Windows network drive and with 15 members of staff and 3 external workers, file control is beginning to become a bit of a nightmare. Even though we have a ...
2
votes
3answers
169 views

Archiving Files

I really like the way gmail has the archive system implemented. I can archive any file after adding a tag to it (if needed) and I can search for it whenever I want to. Is there any program in ...
1
vote
3answers
286 views

Recommendations for .NET Web-based File Manager/Editor

I'm after a simple file management / source editor tool for my ASP.NET hosted website. I frequently make changes to it and its quite annoying having to FTP a single file I want to change to and from ...
1
vote
2answers
89 views

Save a file on device that will survive uninstallation

I want to save a .txt file in my iPhone app, but I want it to persist such that I can still access it even if the app is uninstalled and reinstalled. I have tried to save the file on the iPhone's ...
1
vote
5answers
96 views

Read txt file in C#

I have a txt file with the following data (0010,0010) : Patient's Name : LANE^LOIS^^^ (0010,0020) : Patient ID : AM-0053 (0010,0030) : Patient's Birth Date ...
1
vote
1answer
58 views

How can I get TextMate to work with imported files?

I'm using TextMate to do some Objective-C exercises. When everything is in one file, it works fine, but as soon as I want to work with multiple files it gives an error. For example, I have a separate ...
1
vote
2answers
69 views

FileManager for NetBeans

I am developing fot Android using NetBeans. I have moved from Eclipse, where I have often used file explorer, for pushing and pulling data from and to device. Is there in Netbeans simple window, if ...
1
vote
1answer
75 views

customizable file manager written in PHP

I'm looking for free file management and code editing written in php similar to eXtplorer, that can easily be customized and extended. Any good ones?
1
vote
3answers
72 views

PHP Get File By Regexp

Is there a way that I can have PHP get a file by a Regexp search? I know how to open and read a directory no problem, but finding a particular file is the problem. Here is an example, I have a logo ...
1
vote
1answer
57 views

Flex multimedia file management

Just I have started learning flex for my project. This is project is a kind image, video, audio file management which is accessible from local hard drive like adding, deleting etc.. I heard that Air ...
1
vote
1answer
157 views

Reading Resource Text Files on iPhone

This is mainly an advice question, so any pointers are much appreciated. I have a text file that I would like to draw on when filling UITableViews. I just don't know when I should actually read the ...
1
vote
1answer
346 views

Create, save, and read text file

I want to open one blank new text file on a button event, edit the text, and save it in a directory, and also read that file at any time.
1
vote
1answer
104 views

How to open multiple files in a single action in Visual Studio

I often use the "Command Window" in Visual Studio to quickly open a file by name, for instance by typing open main.c. However what doesn't seem to work is open *.xyz, the intent being to open any ...
1
vote
2answers
46 views

Where can I find a nice File Broswer library for PHP?

This is my case: I'm developing a plugin for Wordpress. I am to browse my server side file directory (uploads) and retrieve a url for a selected file. I'm planning to do this through jQuery (but not ...
1
vote
2answers
100 views

File Management system in Php

I have my system backed up on a server (Docs, Videos, Music, etc.) I have only FTP access (can't really do anything fancy) However I can run PHP and MySQL programs (pretty basic). I was wondering ...
1
vote
3answers
102 views

General question: Filesystem or database?

I want to create a small document management system. There are several users who store their files. Each file which is uploaded contains info about which user uploaded it and the document content ...
1
vote
3answers
811 views

Where does Visual Studio search for txt files when conducting file management operations?

I know this is a noob question, but I've worked with Python before and when you wanted to simply access a .txt file for example, all you had to do was make sure the txt file was in the same directory. ...
1
vote
2answers
318 views

How to manage files and dirs under WSH?

Is it possible to manage files and directories (i.e. get a directory's content, create/copy/delete files, etc.) usig javascript in WSH ? I did a quick look at MSDN and I cant find an object that let ...
0
votes
0answers
29 views

Server File manager for attach field

For a web project I need to have a simple text field with the attach button, but when the user click the button he should see the server file system with the availability to upload some extra files. ...
0
votes
2answers
34 views

File operation not working on device

What could make a file operation that is working well on the simulator, to not be working on an iOS device? When using [NSBundle mainBundle], and the file is found by FileManager, what could be the ...
0
votes
1answer
40 views

strange characters at the end of directory in android

I have an issue with directory creation in Android. I use this code to create a directory if doesn't exist and then create a file under it. dir=new File(Constants.TASK_DIRECTORY); if(!dir.exists()) ...
0
votes
2answers
62 views

C++: Linker error: undefined reference only to one specific class member defined in a separate file

I'm receiving the infamous "undefined reference" error when trying to compile & link several files and would be glad if you could help. The exact error message: g++ -o main list.cpp main.cpp ...
0
votes
0answers
25 views

Managing Web Application Deployments

Ok, so I am getting ready to develop this solution for my company, but before I do I wanted to know if such a software package already exists so I don't have to reinvent the wheel so to speak: ...
0
votes
1answer
36 views

How should I start with tracking file changes/versions?

I've been working with a lot of my files on the go recently, and in the process often times accumulated several copies of files in different stages of completion/revision. I'm working on any number ...
0
votes
2answers
21 views

Practice for storing files for classes

How do you store files that are to be used in a class. For example the class file itself, then images used in that class. Or do you not use images in the class, but just return an output to the main ...
0
votes
2answers
155 views

Get size of file in windows

I have found this function GetFileSizeEx(), which returns the size of file in PLARGE_INTEGER that is formed by the union of structures. typedef union _LARGE_INTEGER { struct { DWORD LowPart; ...
0
votes
2answers
128 views

Accessing a video file outside sandbox

What is the process for accessing a video file on an iPhone so I can transfer it via Bluetooth? NSBundle *bundle = [NSBundle mainBundle]; NSString *moviePath = [bundle pathForResource:@"movie" ...
0
votes
2answers
192 views

Android:How to save application Data to phone memory in file and then retrieve it back?

I am new to android and am trying to develop some basic SMS application. Now, I have two fields one for phone number and other for message, I would like to store these fields in a file and when a user ...
0
votes
1answer
77 views

File manager with auto-renaming of files and strict validation

I'm looking to develop a file manager which has some slightly unusual requirements. The idea is that an authenticated user can upload new files, re-order existing ones (through drag and drop), and ...
0
votes
1answer
107 views

Manage files on iDevices

Does anyone know how programs like iPhoneExplorer manage to list/add/remove files on an iDevice? I would like to do something similar (but more basic) in a Cocoa Touch application.
0
votes
2answers
364 views

How to read images from a specific folder?

I have created a group folder in my Xcode project named USER_PHOTO Then I store some images into that folder. In my application, I open the camera mode. How can I save the captured images into ...

1 2