Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

22
votes
4answers
645 views

Retrieving files from directory that contains large amount of files

I have directory that contains nearly 14,000,000 audio samples in *.wav format. All plain storage, no subdirectories. I want to loop through the files, but when I use DirectoryInfo.GetFiles() on ...
20
votes
7answers
7k views

.NET How to check if path is a file and not a directory?

I have a path and I need to determine if it is a directory or file. Is this the best way to determine if the path is a file? string file = @"C:\Test\foo.txt"; bool isFile = ...
12
votes
4answers
3k views

Can I move the .git directory for a repo to it's parent directory?

I have two sub-directories each with a repo, thus : PPP/ |--ABC/ | |--.git/ | |--AAA/ | | BBB/ | | CCC/ | |--DEF/ | |--.git/ | |--DDD/ | |--EEE/ And would like to ...
10
votes
5answers
12k views

C#: How to open Windows Explorer windows with a number of files selected

In the Library of Windows Media Player you can select one or more music files. You can then right-click and in their context menu choose Open File Location. This will open up one windows explorer ...
7
votes
4answers
139 views

In C, how to I get to a specified directory?

I have to do a program where I need to index the files in a specified directory. I've gotten the indexing part down, but what I'm having trouble with is how to navigate to the directory. For example, ...
7
votes
6answers
3k views

How do I distinguish a file from a directory in Perl?

I'm trying to traverse through all the subdirectories of the current directory in Perl, and get data from those files. I'm using grep to get a list of all files and folders in the given directory, ...
6
votes
2answers
518 views

Detect when a directory or file changes

Other than reading all the files and comparing them with a previous snapshot, is there a way to detect when a directory changes in C# with Windows? I don't mind PInvoke if that's what it takes.
6
votes
3answers
3k views

Maven - how to include empty directories

By default during the build process maven is removing the empty directories. Do you know if a parameter can be specified in the pom to instruct maven to include empty directories in the generated ...
6
votes
12answers
2k views

Removing .svn files from all directories

I recently converted my cvs repository to svn using cvs2svn and I recently noticed that every directory has a hidden folder called .svn. My current build script copies a lot of directories from my ...
5
votes
2answers
764 views

FileUpload .net control and saving files to virtual folder on remote file server

I have a .net website that resides on a webserver running IIS 6.0 on win2k3 server. This includes a virtual directory that points via a UNC name to a file server. The "connect as" is set to use a ...
5
votes
8answers
514 views

linux, directories, where should stuff go

I'm currently trying to get to grips with using linux. I'm running mint linux (an ubuntu variant). When I install something using apt-get, files seem to get scattered across various system ...
4
votes
1answer
3k views

Issue with production release of CUDA Toolkit 4.0 and Nsight 2.0

I previously had the release candidates of both programs, then I uninstalled them and installed the production releases of the programs. This includes the CUDA toolkit, Parallel Nsight, and the GPU ...
4
votes
6answers
614 views

How can I create a new folder in asp.net using c#?

How can I create a new folder in asp.net using c#?
4
votes
1answer
111 views

Looking for java library for directories synchronization

I'm looking for a java library (not tool) that will provide synchronizing local directory with directory on server (ftp). What I need is to put a set of files on server and then I want all clients to ...
4
votes
5answers
907 views

How do you store a list of directories into an array in Bash (and then print them out)?

I want to write a shell script to show a list of directories entered by a user and then for a user to select one of the directories with an index number based on how many directories there are I'm ...
4
votes
2answers
203 views

Win32 Perl - Telling the difference between files and folders using a passed directory argument

I'm writing a script in perl strawberry. The first thing it needs to be able to do is take a path argument and get a directory listing for that path, and it needs to be able to distinguish between ...
4
votes
2answers
439 views

How to write a Powershell function to get directories?

Using Powershell I can get the directories with the following command: Get-ChildItem -Path $path -Include "obj" -Recurse | ` Where-Object { $_.PSIsContainer } I would prefer to write a function ...
4
votes
1answer
427 views

How do I test to see that a directory is empty in ANT?

How can one test to see that a directory is empty in ant?
4
votes
4answers
4k views

How can I create a directory if one doesn't exist using Perl?

Currently, my Perl output is hard-coded to dump into the following UNIX directory: my $stat_dir = "/home/courses/".**NEED DIR VAR HERE**; The filename is built as such: $stat_file = $stat_dir . ...
3
votes
2answers
203 views

Non-recursive way to get all files in a directory and its subdirectories in Java

I am trying to get a list of all files in a directory and its subdirectories. My current recursive approach is as follows: private void printFiles(File dir) { for (File child : dir.listFiles()) { ...
3
votes
2answers
123 views

In python, how do I copy files into a directory and stop once that directory reaches a certain size

I am still very new to Python, but I am trying to create a program which will, among other things, copy the contents of a directory into a set of directories that will fit onto a disc (I have it set ...
3
votes
3answers
124 views

Elisp for expressing directory hierarchy in plain text

On emacs mailing lists I've seen people paste their directory hierarchy like so: |-- .yas-make-groups |-- collections | |-- each | `-- ... |-- control structure | |-- forin | `-- ... |-- ...
3
votes
2answers
246 views

Iterating over libraries and execute task in Ant

I need to be able to execute a task for all sub-directories with a certain name in Ant. For each sub-dir, I need to do an exec task How can I do this ? Examples I found use fileset for copy tasks, ...
3
votes
3answers
277 views

How does one atomically replace a directory with another one in Java?

I have a directory that contains data files served to clients, say, /srv/data. While making a series of updates, I am working on /srv/data_tmp, and at the end of the operation, I would like to ...
3
votes
5answers
698 views

Bash command to delete all but last 5 directories [closed]

Possible Duplicate: Delete all but the most recent X files in bash I have a script to create incremental backups daily and I need to delete all backups but last 5. For example, I have this ...
3
votes
3answers
568 views

How to Limit The Depth of a Recursive Sub-Directory Search

I've got a function that currently grabs all folders and sub-folders to check the ACL's for a small tool I'm building but I'm pulling my hair out trying to figure out how to limit the depth that it ...
3
votes
3answers
800 views

PHP + Wordpress - get a list of files from a directory

Are there any native WP functions that are able to list files based by extension from a directory? if not, how do I do this with php? I want to get the file names of all .css files from a certain ...
3
votes
5answers
235 views

Creating/making directories in python (complex)

I am trying to create a bunch of directories/subdirectories that I can copy files into. I am working with Python and I can't seem to find a good way to do this. I have a main path that I will branch ...
3
votes
5answers
2k views

How to get the newest (last modified) directory [C#]

Currently my application uses string[] subdirs = Directory.GetDirectories(path) to get the list of subdirectories, and now I want to extract the path to the latest (last modified) subdirectory in the ...
3
votes
4answers
2k views

C#: How to check if I can read and/or delete a directory

I loop through a bunch of directories recursively. Some of them (like D:\$RECYCLE.BIN\S-1-5-20) give me a System.UnauthorizedAccessException. I suppose that I can just catch it and move on, but I ...
3
votes
2answers
2k views

Running files in a directory recursively using ruby

I'm working on script right now which has to run each ruby script in a directory and its subfolders. e.g. run-all.rb - scripts - folder1 - script1.rb - script2.rb - folder2 - ...
3
votes
4answers
301 views

Problem: .NET code runs from one directory, but not another, on same disk

Our application is a hybrid Win32 unmanaged application and a .NET 2.0 managed application. The Win32 part is the main executable, which at some point loads and hosts the .NET 2.0 runtime and loads ...
2
votes
1answer
41 views

Writing simple du clone. Getting random values for filesizes in subdirectories.

I am trying to write a basic program that will sum up the filesizes of all files in the current directory and all subdirectories. I thought it would be a nice exercise. I am trying to use basic ...
2
votes
1answer
38 views

Reading image from outside public_html with PHP?

this is really stupid, but I been trying dozens of different things and I can't for the life of me work out what I am doing wrong. I have a cpanel installation, with the usual public_html directory ...
2
votes
1answer
68 views

How to recursively loop through a file structure and rename directories in python

I would like to resursively rename directories by changing the last character to lowercase (if it is a letter) I have done this with the help of my previous posts (sorry for the double posting and ...
2
votes
3answers
76 views

C++ search directories and files

Can someone tell me if there is a library built in C++ that I can use to get a list of files and directories? I've looked around and I see people using dirent.h but I need to download it(i think). ...
2
votes
2answers
105 views

Why use DIRECTORY_SEPARATOR in PHP [closed]

Possible Duplicate: Is using the directory separator constant neccessary? Why specialists do use DIRECTORY_SEPARATOR const in their scripts, while both Windows & Unix understand the ...
2
votes
1answer
50 views

Parsing folder back, in PHP

Well, it is a litte bit strange, since I remember that if I wan't to go to the directory back, then I need to do the following: include("../something-in-back-folder.php"); but it throws up an error ...
2
votes
5answers
80 views

PHP - How to make a list out of folders stored in a specific folder on your server?

I am creating a CMS application as an addition to a website of mine. On this website, there is a promotions section. I want to make a page that lets me easily add and edit promotions (2 images). ...
2
votes
1answer
60 views

(Python) Issues with directories that have special characters

OS: Windows server 03 Python ver: 2.7 For the code below, its runs fine when I substitute "fuchida@domain.com" with "fuchida". If I use the email format for directory name I get the following error ...
2
votes
1answer
281 views

rsync prints “skipping non-regular file” for what appears to be a regular directory

I back up my files using rsync. Right after a sync, I ran it expecting to see nothing, but instead it looked like it was skipping directories. I've (obviously) changed names, but I believe I've still ...
2
votes
2answers
143 views

Problem With SAX Parsing in Java

So I asked a question earlier just to brush up on some basics of SAX and I learned a lot from the answers. From what I learned, I tried to create a Java program that would traverse a bunch of ...
2
votes
3answers
447 views

Python ftp list only directories and not files

I would like to list all directories on a ftp directory and then enter each of them. The problem is that my code also list file and try to enter them as well. Is there a way to get a return value ...
2
votes
4answers
216 views

PHP: Dynamically add the same CSS file from different pages at different directory depths

Okay I've been trying to figure this out for a while now. I have a website I'm working on and here is basically my structure: index.php page-x/ index.php page-x-y/ index.php include/ ...
2
votes
2answers
181 views

Cross-platform C++ Directory Managing

Are there any cross platform libraries that will help me place certain file in different directories. For example in windows a config file will probably go in app data, yet in Linux it will go in ...
2
votes
2answers
120 views

how to copy diff of two directories to a new directory?

Suppose I have two directories : D1 and D2. D1 ( f1, f2, f3, f4 ) D2 ( f1, f2 ) I want to copy the files in D1 , which are not in D2, to another directory D3 : D3 ( f3, f4 ) How do I do this in ...
2
votes
2answers
271 views

ForceDirectories returns False

I am using the ForceDirectories function like this: ForceDirectories('C:/Path/To/Dir'); And it returns False and no directories at all are created. GetLastError returns 0. I am running the program ...
2
votes
3answers
534 views

Shell Script for renaming and relocating the files

I am working on something and need to solve the following. I am giving a analogous version of mine problem. Say we have a music directory, in which there are 200 directories corresponding to ...
2
votes
5answers
188 views

Delete images that don't exist in SQL database

I have a table of products in my sql database. Each product has an image and 4 thumbnails. These just store the filename of an image on the hard drive. The problem I have is that over time I have ...
2
votes
1answer
712 views

What is all this stuff in the CKEditor folder?

A while ago I downloaded the latest version (3.1) of the CKEditor text editor. The directory name was ckeditor and I deleted the ckeditor/_source and ckeditor/_samples sub-directories, then I ...

1 2 3 4