0
votes
1answer
30 views
Getting R to store the working directory for every session
I asked this on Super User, but someone suggested that I take it here because there are many more R experts.
The question:
I have to keep navigating to my directory when I go to …
0
votes
3answers
40 views
Reorder files and folders
Hi,
I got a list of files and folders using dirent & stat in C, but they are not in the order I want. I want it will list the directories first then files.
Ex:
.
..
[dir1]
[d …
0
votes
3answers
119 views
Debug recursive thread call in C
I have been trying to debug my code whenever I had free-time for the past day and a half and I don't know what is wrong with my code. When I add the close() function to a recursive …
0
votes
4answers
59 views
Ruby File::directory? Issues
Hello!
I am quite new to ruby but enjoying it so far quite immensely. There are some things that have given me some trouble and the following is no exception.
What I am trying t …
0
votes
1answer
20 views
ASP.NET C#: Create sub-folder in another website on same server
I am in the need to create sub-folders within another website on the same server as the requesting website. How do I go about doing this?
I have tried Server.MapPath(path) but it …
1
vote
3answers
58 views
Is it possible to use opendir repeatedly in C?
I am trying to debug right now in C and am curious if it is alright to call opendir() repeatedly without having to first call closedir() because I am trying to run a loop to open s …
0
votes
5answers
60 views
Using grep to find files that doesn’t contain a given string pattern
I'm using the following command in my web application to find all files in the current directory that contain the string foo (leaving out svn directories).
find . -not -ipath '. …
0
votes
4answers
139 views
How to list all subdirectories in a given directory in C?
Is there a way to list all subdirectories in a given directory path in C? I was hoping I would be able to do it with the stat() function but it only works on files.
1
vote
2answers
50 views
Where can I store executable code downloaded from a site and run it?
In my C# application, if I wanted to be able to download an "add-in" from our website and store it locally on the user's computer, and then run it (assume it's an assembly DLL or E …
0
votes
4answers
54 views
Getting R to remember previous directory
I have to keep navigating to my directory when I go to File > Change dir..., which is particularly annoying.
Does anyone know how to make R remember the previously used directory? …
1
vote
3answers
133 views
Python file manipulation
Assume I have such folders
rootfolder
|
/ \ \
01 02 03 ....
|
13_itemname.xml
So under my rootfolder, each directory represents a month like 01 02 03 and …
0
votes
2answers
17 views
directory for files generated by make during installation from configure, make and make install
Just assume we are installing some libraries from its source distributed by the way GNU promoted. When using "./configure --prefix" to specify where to install.
(1) does make gen …
0
votes
3answers
46 views
Looping through directory backwards
Hay all im using a simple look to get file names from a dir
if ($handle = opendir('news_items/')) {
while (false !== ($file = readdir($handle))) {
if ($file != "." &am …
0
votes
2answers
11 views
List Directory Contents in a UITableView
I am trying to list the contents of Ringtones directory in a TableView, however, I am only getting the last file in the directory in ALL cells, instead of file per cell. This is my …
0
votes
2answers
44 views
How to retrieve a directory of files from a remote server?
If I have a directory on a remote web server that allows directory browsing, how would I go about to fetch all those files listed there from my other web server? I know I can use u …
