The dir tag has no wiki summary.
1
vote
1answer
44 views
How do I read numpy source?
I built it myself on Python 3.3, but I can't for the life of me find the class definition of numpy.array(). I've looked all through the code and even found the core C files, but where is the dang ...
0
votes
2answers
32 views
DIR function in vba works diffrent when passing a value directly and by a variable
Hi i have some files ina paticular folder in my system when i use th ebelow code it gives all the files in that folder (passing the path directly)
filenm = Dir("C:\Documents and ...
0
votes
1answer
22 views
How do I go about iterating over files in a directory, ordered based on last edit time in ruby?
I'm iterating over the files in a given directory in ruby, ie:
Dir.each
I'd like to iterate over the files in sorted order - descending or ascending by last edit date. What's the shortest way to ...
0
votes
0answers
23 views
Batch DIR and VAR
I am currently working on a "advanced" batch script, just to keep my mind to something.
What i am trying to make is a (as far as its possible to make one) Bot script that includes the following ...
0
votes
2answers
48 views
Error 53 when checking if file exists
I am using the following code to check if a file exists:
If Len(Dir$(strFile)) > 0 Then
This worked fine until today.
In some cases I get the following error:
The error points to the line of ...
1
vote
1answer
41 views
Ruby Dir.exists? undefined method
I looked the Dir.exists? method up in the documentation and I believe I am using it correctly, yet at each call I am hit with this error:
undefined method `exists?' for Dir:Class (NoMethodError)
Am ...
1
vote
5answers
58 views
How to get the extention of an image using PHP? [duplicate]
Is there any way to get the extension of an image without writing its extension?
For example in the code below, i have to write image.GIF to know that it is GIF file.
...
-1
votes
2answers
31 views
How to do search when in interactive python shell [closed]
Sometimes, I need to use dir(obj) to find which members and methods belong to obj. Then I got a lot of methods, i.e. a big list like the following:
['__class__', '__delattr__', '__delitem__', ...
-1
votes
0answers
28 views
PHP - Gallery, loops, limit [closed]
I'm working on a gallery page and I would like to display 20 pictures on a single page.
I also added a pagination system (not included in script) but when I change pages the for loop uses the same ...
0
votes
2answers
61 views
How do i get a list of folders and subfolders without the files
I am trying to print a list of the folders and subfolders of a directory to a file.
When i run dir /s/b/o:n > f.txt i get a list of the files also.
I only need the folders and sub folders.
...
0
votes
2answers
100 views
get list of files and folders to table format in CMD
I have read this thread, which helped, but doesn't answer my specific question. I'm hoping someone can help.
I am trying to export a CSV file with TWO COLUMNS of data. Column 1 is the actual ...
0
votes
3answers
35 views
Delete the zip files with date format by comparing to the present date in Python
I have a list of files(Actually these are the files in some directory) as below for example
import os
path = '/home/user/folder'
files = os.listdir(path)
so result is as below
files = ...
0
votes
1answer
105 views
How to save a list of directory with files containing Russian or Chinese characters (Windows7)
I need from time to time to make a list of files from a CD I obtain. These files' names contain frequently characters in other writing systems, like Cyrillic Russian (Добродошли.doc) or ...
0
votes
1answer
75 views
What device does the cmd command 'dir' use?
Sorry for the unclear question!
The command prompt command 'dir' lists all files and directories in a directory, as you probably know.
I am reading "Subverting the Windows Kernel: Rootkits" at the ...
0
votes
0answers
29 views
How to make DIR search in subfolders but display only the filename
How do I make DIR search in subfolders but display only the filename?
I have this:
DIR F:\*.exe /B /S /O:N >> programlist.txt
which outputs
a:\test.exe
a:\Stuff\test\test2.exe
I would ...
1
vote
3answers
52 views
batch: get the name of the owner of a folder
the only command that i know to get the owner of a folder in a batch script is:
dir %foldername% /q
this has two problems:
it shows in a list all foldername's content, so i've to read only
the ...
1
vote
4answers
50 views
Outputting ONLY folders and excluding specific ones
To start I am brand new to powershell.
Hello, I have a database with over 10TB of data and need to organize the data. I am doing this by using Powershell to output only the folders to a text file and ...
0
votes
2answers
52 views
Python application directory strucuture (Linux)
What is the best practice to structure the python application when installed to the system as a rpm/deb package?
The app code is mostly written in Python, and there are some shell scripts, ...
0
votes
1answer
41 views
How to use the list files in a given directory via batch file without showing the full path?
I have searched for this everywhere so I hope it has not already been asked, but I have a batch file where the user can write his / her own 'scripts' if you will. When the batch file is ran for the ...
-3
votes
1answer
33 views
Copy the directoy in java Using URI
Could you please advise me, how to copy the directory from one path to another path(simple way) Using URI.
Kindly provide any examples.
Thanks for looking into this..
0
votes
2answers
60 views
Do I Need to Allocate Memmory for a Dirent Structure
Platform: Windows XP Service Pack 3
Compiler: Code::Blocks version 12.11
I am currently writing a program that will recursively delete a given directory using the POSIX directory funtions. But I am ...
0
votes
2answers
141 views
Batch script to list folders but exclude specific folders
I want this script to list all folders that contains "deleted" in the folder name but not if they is in a folder called "done".
For exampel: list the folder if it's in C:\temp and if it's in ...
2
votes
4answers
52 views
listing files in folder showing index.php
I have this code, but it is showing the index.php itself How can I filter *.php files?
<?php
if ($handle = opendir('.')) {
while (false !== ($file = readdir($handle)))
{
if ...
0
votes
5answers
62 views
Rename more than one directory at once
I have bunch of directories such as
2013_03_12_18_26_am
2013_03_12_18_26_cu
2013_03_12_18_26_ig
2013_03_12_18_26_mdf
2013_03_12_18_26_pih
2013_03_12_18_26_tn
2013_03_12_18_26_an
2013_03_12_18_26_cv
...
0
votes
1answer
49 views
List files with MATLAB which are not .m files
I can list all .m files in the current directory with this code: dir(fullfile('.', '*.m')).
But how to change the regular expression that only files will be listed which have not the ending .m ...
0
votes
0answers
14 views
find and isolate dir name from returned path - so as to use as a variable
OK - here goes, this is something I have been after for sometime, tried to research it, understand it... BUT it seems that NO ONE ever gives a straight concise answer that works as per the question ...
-1
votes
1answer
48 views
use DIR command output in batch
I use command :
dir D:\ /b /A:D-H
and output is for example:
Photos
Wallpapers
My Personal Data
and.. I want to set varialeble on this folders as:
set SOMEFOLDER=folder1
set ...
0
votes
1answer
27 views
Limit shown directories in PHP
How can I show a folder's limit in a directory using PHP? The code below shows all folders but I only want to see 10 folders.
function folderlist() {
$startdir = './';
$ignoredDirectory[] = '.';
...
0
votes
1answer
634 views
Command to list all files in a folder as well as sub-folders in windows
I tried searching for a command that could list all the file in a directory as well as subfolders using a command prompt command.
I have read the help for "dir" command but coudn't find what I was ...
0
votes
2answers
401 views
Windows Batch File to count all files and subdirectories but not list
I'm need to essentially get the summary of "DIR/s" but without listing. I want to be able to see the number of files/folders/bytes used and bytes available - and pipe all that to a file?
0
votes
1answer
50 views
A more accurate DOS DIR modified time
Is it possible to view the last time a file was modified in DOS in millseconds or even in seconds?
2
votes
2answers
144 views
read .csv file with unknown path — R
I know this might be very stupid question but I have been spending hours on this
want to read a .csv file that I dont have its full path (*/*data.csv). I know that following would get the path of the ...
1
vote
0answers
72 views
Error passing parameters to PHP backend via AJAX
I've got the following index.php in files directory
<script src="js/ajax.js"></script>
Here's ajax.js:
$.post("../require/return.php", {email_val: email_val}, function(data)){
...
-1
votes
1answer
43 views
How to list the methods associated with a Jquery object [duplicate]
I'm learning JQuery, and I'm looking for a way to view the methods an object as associated with it after its created, much like python's dir().
0
votes
2answers
113 views
how to echo directory name [closed]
how to echo directory name with images gallery
this code showing random images and i want to echo directory name with images please help me to fix this issue.
**i want like this
example
...
0
votes
1answer
31 views
DIR /p pausing not working…?
I am having a problem. I need my code to list all the text files in a big directory and pause at each full screen. I set it up so that users will be able to input the number that is listed beside ...
0
votes
0answers
46 views
dir function in MS Access 2010 dont show č, ć, š, đ, đ
I have 4 PC LAN, and one of them is "server" and there are documents in directories bu Id. On two of them i can see files i one directory ( use dir function), and put it on list box. Double click and ...
0
votes
3answers
121 views
Python dir() function with variable arguments
For fun/to practice python, I am trying to create a program that displays the contents of a module. Looks like this:
import sys
print "Here are all the functions in the sys module: "
print dir(sys)
...
0
votes
3answers
113 views
case sensitive dir in cmd.exe
I just experienced a search dir *T.java in a cmd.exe giving back SortedArrayList.java as well as ReaderT.java (my Test class filename structure). I can't infer a case sensitivity switch from the help ...
0
votes
1answer
32 views
How to know with Ruby if a path is outside another?
I'm building a little script and I'd need to know some way of testing if a path (a string for example) is outside another path (another string). For example:
/some/path and /some/path/file.rb would ...
0
votes
1answer
107 views
Please, help me to convert shell-script to python
I'd like to make python-script to search file by pattern in directory and show result.
In shell it's easy and was made in an hour.
date=`date +%F`
path=/root/bkp
for i in $(ls $path)
do
str=`find ...
0
votes
2answers
93 views
Testing directory suing S_ISDIR,But it doesn't work
I'm studying c programming in linux,and I wrote this to output information about the files and directories like the standard tool "ls" with "-l",everything works fine except the macro S_ISDIR,Here is ...
0
votes
1answer
59 views
How do I delete directories for a specific time period (say older than one month) using dos command?
I am trying to delete directories older than one month from a batch file.
I am able to list directory names using:
dir D:* /A:D-H
But not sure how can I delete them for a specific time.
Can ...
1
vote
1answer
31 views
create a folder in a grandparent dir vb.net
I want to create a dir (named with a varible Utilities._Name)located two levels from the exe file,
My exe file is in C:\SGEA\SGEA\bin
How can I do it so I get C:\SGEA\theNewDir without using full ...
0
votes
2answers
87 views
Wicket - Create new folder per session
I am using apache wicket 1.5 and when a new session is initialized I want to create a new temp folder:
Example:
Session_1_connect -> create_temp_1
Session_1_disconnect -> delete_temp_1
A new user ...
0
votes
1answer
203 views
Ant script giving class not found exception - why?
<project name="MyProject" default="run" basedir=".">
<description>
simple example build file
</description>
<!-- set global properties for this build -->
...
1
vote
2answers
91 views
Depth First Directory Traversing resulting in Segmentation Fault in C
I am writing a code to traverse through the directory using depth first algorithm. The problem is the program is not displaying anything and gives Segmentation Fault error. I tried to debug it but it ...
0
votes
1answer
70 views
MATLAB missorting structure array when using dir command
I have a bunch of Excel data, called "1.xls", "2.xls"... until "15.xls", each with 141x44 sets of data. I am using the dir function to import the data into MATLAB.
Here I am importing the first and ...
0
votes
3answers
127 views
Traversing through Directories in C
I am trying to traverse through a directory whose path is given but the following program is not going inside the directories and is stuck in infinit loop. What is the problem in this code:
void ...
1
vote
1answer
150 views
Why dir_module does NOT seem to load, although clearly it is loaded in httpd.conf and modules folder?
I checked the httpd.conf file which has "LoadModule dir_module modules/mod_dir.so
" uncommented already. I also check the apache modules folder seeing that mod_dir.so is there too. BUT still the ...



