Tagged Questions

A directory or folder is a virtual container within a digital file system, in which groups of computer files and other directories can be kept and organized.

learn more… | top users | synonyms

138
votes
16answers
93k views

How to ignore a directory with SVN?

Just started using SVN and I have a cache directory that I don't need under source control. How can I ignore the whole directory/folder with SVN? Edit: Using Versions and TextMate on OSX and ...
52
votes
1answer
37k views

server.mappath(“.”), server.mappath(“~”), server.mappath(@“\”), server.mappath(“/”). What is the difference?

Can anyone explain the difference between Server.MapPath("."), Server.MapPath("~"), Server.MapPath(@"\") and Server.MapPath("/")?
45
votes
6answers
17k views

Best way to require all files from a directory in ruby?

What's the best way to require all files from a directory in ruby ?
44
votes
13answers
28k views

Create a temporary directory in Java

Is there a standard and reliable way of creating a temporary directory inside a Java application? There's an entry in Sun's issue database, which has a bit of code in the comments, but I wonder if ...
40
votes
11answers
52k views

How to remove illegal characters from path and filenames?

I need a robust and simple way to remove illegal path and file characters from a simple string. I've used the below code but it doesn't seem to do anything, what am I missing? using System; using ...
38
votes
4answers
29k views

How to get a path to the desktop for current user in C#?

How do I get a path to the desktop for current user in C#? The only thing I could find was the VB.NET-only class SpecialDirectories, which has this property: ...
32
votes
11answers
80k views

C/C++: How to obtain the full path of current directory?

Is there a platform-agnostic and filesystem-agnostic method to obtain the full path of the directory from where a program is running using C/C++? Not to be confused with the current working directory. ...
26
votes
5answers
4k views

How do I create a directory from within Emacs?

How exactly can I create a new directory using Emacs? What commands do I use? (If possible, please provide an example)
24
votes
4answers
37k views

How can I get a list of files in a directory using C or C++?

How can I determine the list of files in a directory from inside my C or C++ code? I'm not allowed to execute the 'ls' command and parse the results from within my program.
19
votes
10answers
17k views

How do I delete a directory with read-only files in C#?

I need to delete a directory that contains read-only files. Which approach is better: using DirectoryInfo.Delete(), or ManagementObject.InvokeMethod("Delete")? With DirectoryInfo.Delete, I have to ...
18
votes
8answers
14k views

How do you get a directory listing sorted by creation date in python?

What is the best way to get a list of all files in a directory, sorted by date [created | modified], using python, on a windows machine?
16
votes
5answers
6k views

Iterate through every file in one directory

How do i write a loop in ruby so that I can execute a block of code on each file? I'm new to ruby, and I've concluded that the way to do this is a do each loop. The ruby file will be executed from a ...
16
votes
5answers
7k views

Checking for directory and file write permissions in .NET

In my .NET 2.0 application, I need to check if sufficient permissions exist to create and write to files to a directory. To this end I have the following function that attempts to create a file and ...
15
votes
4answers
3k views

Moving Files into a Real Folder in Xcode

When I started my project I was happy to use Groups in Xcode rather than literal folders: Since I'm using the browser in Xcode to access everything, stuff was nicely organized and I was happy. ...
15
votes
3answers
12k views

How to [recursively] Zip a directory in PHP?

Directory is something like: home/ file1.html file2.html Another_Dir/ file8.html Sub_Dir/ file19.html I am using the same PHP Zip class used in PHPMyAdmin ...
14
votes
6answers
20k views

Get the current working directory for cmd.exe

How can I retrieve the current working directory of cmd.exe? This seems possible. For example using ProcessExplorer, select CMD.exe, right click, properties, Image tab, "Current Directory" relects ...
13
votes
11answers
25k views

Copying files from one directory to another in Java

I want to copy files from one directory to another (subdirectory) using Java. I have a directory, dir, with text files. I iterate over the first 20 files in dir, and want to copy them to another ...
12
votes
5answers
5k views

Calculating a directory size using Python?

Before i re-invent this particular wheel, has anybody got a nice routine for calculating the size of a directory using Python? It would be very nice if the routine would format the size nicely in ...
12
votes
2answers
4k views

git status - is there a way to show changes only in a specific directory?

I would like to see a list of files modified since the last commit, as 'git status' shows, but I care only about files located in a single directory. Is there a way to do this? I tried 'git status ...
12
votes
10answers
24k views

how to check if a directory exists in a makefile

I need to generate a directory in my makefile and I would like to not get the "directory already exists error" over and over even though I can easily ignore it. I mainly use mingw/msys but would like ...
10
votes
3answers
597 views

How expensive is File.exists in Java

Hallo, I am wondering who 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 ...
10
votes
4answers
12k views

What is the best way in Perl to copy files into a yet-to-be-created directory tree?

What is the best way in Perl to copy files to a yet to be created destination directory tree? Something like copy("test.txt","tardir/dest1/dest2/text.txt"); wont work since the directory ...
10
votes
19answers
2k views

Delphi Active Commercial Components

Similar to the Delphi FOSS component question, a commercial component directory will also be a valuable searchable resource. I invite you to contribute your expierience with your favourite commercial ...
9
votes
6answers
294 views

How can I determine that several file paths formats point to the same physical location [closed]

Possible Duplicate: Best way to determine if two path reference to same file in C# There are several ways to specify a directory location. For example: \\machineName\c$\rootPath\subPath ...
9
votes
3answers
11k views

iPhone dev: load a file from resource folder

I'm writing an iPhone app with a UIWebView which should display various html files I have in the app resource folder. In xcode my project overview, these html files are displayed like this: dirA ...
9
votes
3answers
2k views

How do I use filesystem functions in PHP, using UTF-8 strings?

I can't use mkdir to create folders with UTF-8 characters. <?php $dir_name = "Depósito"; mkdir($dir_name ); ?> But, when I browse this folder in Windows Explorer, the folder name looks like ...
9
votes
3answers
2k views

How do I iterate through a directory in Common Lisp?

I'm using OpenMCL on Darwin, and I'd like to do something like: (loop for f in (directory "somedir") collect (some-per-file-processing f)) But I can't get directory to return anything other than ...
9
votes
2answers
8k views

How to import a Python class that is in a directory above?

I want to inherit from a class in a file that lies in a directory above the current one. Is it possible to relatively import that file?
9
votes
4answers
2k views

Windows batch file starting directory when 'run as admin'

I have a batch file which is in a directory and must be run from there as well because it updates files within this directory. This works perfectly fine, except when the user runs the batch file as ...
9
votes
7answers
4k views

What's the best way to get the directory from which an assembly is executing

For my apps, I store some configuration file in xml along with the assembly(exe), and something other temporary files for proccessing purpose. I found some quirk with ".\\" and ...
9
votes
5answers
10k views

How can I copy a directory recursively and filter filenames in Perl?

How do I copy a directory including sub directories excluding files or directories that match a certain regex on a Windows system?
9
votes
9answers
21k views

How do I get a directory listing in Perl?

I would like to execute ls in a Perl program as part of CGI script. For this I used exec(ls), but this does not return from the exec call. Is there a better way to get a listing of a directory in ...
9
votes
7answers
6k views

How do I check if a directory is writeable in PHP?

Does anyone know how I can check to see if a directory is writeable in PHP? The function is_writable doesn't work for folders.
8
votes
7answers
260 views

Is there a way to simplify this case statement?

I have this PHP case statement switch ($parts[count($parts) - 1]) { case 'restaurant_pos': include($_SERVER['DOCUMENT_ROOT'] . '/pages/restaurant_pos.php'); break; case ...
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
4answers
651 views

How to obtain a list of directories within a directory, like list.files(), but instead “list.dirs()”

This may be a very easy question for someone - I am able to use list.files() to obtain a list of files in a given directory, but if I want to get a list of directories, how would I do this? Is it ...
8
votes
5answers
372 views

How can I list all files in a directory using Perl?

I usually use something like my $dir="/path/to/dir"; opendir(DIR, $dir) or die "can't open $dir: $!"; my @files = readdir DIR; closedir DIR; or sometimes I use glob, but anyway, I always need to ...
8
votes
6answers
2k views

How to find the real user home directory using python?

I see that if we change the HOME(linux) or USERPROFILE(windows) environmental variable and run a python script, it returns the new value as the user home when I tried, os.environ['HOME'] os.exp Is ...
8
votes
8answers
1k views

C# deleting a folder that has long paths

I'm trying to delete a folder and the delete is failing due to the folder containing long paths. I presume I need to use something else instead of dir.Delete(true), Anyone crossed this bridge before? ...
8
votes
4answers
468 views

Path.Combine and the dot notation

I'm looking for something akin to Path.Combine method that will help me correctly combine absolute and relative paths. For example, I want Path.Combine(@"c:\alpha\beta", @"..\gamma"); to yield ...
8
votes
6answers
2k views

Rscript: Determine path of the executing script

I have a script called foo.R that includes another script other.R, which is in the same directory: #!/usr/bin/env Rscript print("Hello") source("other.R") But I want R to find that other.R no ...
8
votes
2answers
4k views

Git: Renaming a directory in a branch

I have a project using Git where I've branched off of master to rename a directory. The rename in the branch works as expected. When I switch back to the master branch the directory has its original ...
8
votes
5answers
13k views

Counting the number of files in a directory using Java

How do I count the number of files in a directory using Java ? For simplicity, lets assume that the directory doesn't have any sub-directories. I know the standard method of : new File(<directory ...
8
votes
5answers
377 views

Good reasons to pass paths as strings instead of using DirectoryInfo/FileInfo

In my new code I am not using strings to pass directory paths or file names. Instead I am using DirectoryInfo and FileInfo as they seem to encapsulate a lot of information. I have seen a lot of code ...
7
votes
1answer
124 views

What is the fastest and most efficient way of storing and fetching images when you have millions of users on a LAMP server?

Here is the best method I have come up with so far and I would like to know if there is an even better method (I'm sure there is!) for storing and fetching millions of user images: In order to keep ...
7
votes
2answers
292 views

java 7 directory monitoring questions

I just saw an awesome feature with java 7, the directory watcher. It'll tell you when something changed in a directory without polling the directory. 1.) But it says it falls back to polling if the ...
7
votes
2answers
5k views

Find current directory and file's directory

In python what command can I use to find both (two different commands of course) the current directory (where I was in terminal when executed) and where the file I am executing is?
7
votes
4answers
1k views

C# How to know if a given path represents a root drive?

How can I know if a given directory is a root drive? (aside from checking if its path equals to "A:", "B:", "C:", etc.)
7
votes
4answers
1k views

Using bash, how do you make a classpath out of all files in a directory

This will be a really simple freebie for a bash guru: Question Using bash, how do you make a classpath out of all files in a directory? Details Given a directory: LIB=/path/to/project/dir/lib ...
7
votes
3answers
345 views

Can I make RecursiveDirectoryIterator skip unreadable directories?

foreach(new RecursiveIteratorIterator(new RecursiveDirectoryIterator(".")) as $file) { echo "$file\n"; } Is there any way for this code to not throw UnexpectedValueException "failed to open dir: ...

1 2 3 4 5 36