Viewing 15 posts - 1 through 15 (of 25 total)
Thanks for the reply Martin, I really appreciate it. Unfortunately that is not the case. In the first example, State is also a level in the hierarchy. the members come...
May 1, 2015 at 9:47 am
That is also my preferred solution most of the time. If I can handle it in the table, better! Straight forward measures and no complications.
May 1, 2015 at 9:42 am
Rob, thank you so much. This helps a lot.
February 27, 2014 at 3:13 pm
Hi there,
Did you find any solution? I have the same need.
Thanks
October 17, 2011 at 2:20 pm
Hi Jeff,
Below is the sample output:
09/04/2009 10:39 AM 722432 C:\temp\input1.xls
This should run fine on the command line:
FOR /R %i IN (*.*) DO @echo %%~tfzi
For some reason, running...
July 11, 2011 at 1:57 pm
I guess if filedates and sizes are not required then /B (bare) switch will work just fine.;-)
Otherwise, DIR does not have a switch that has the filedates, sizes and fullpath...
July 8, 2011 at 12:39 pm
DIR C:\temp /s >gt list.txt does not give you the fullpath of the files. The output looks more like this:
Directory of C:\temp\test1\test2
and then followed by the file...
July 7, 2011 at 10:31 am
I originated this thread in 2008. Below is the alternate approach:
1) create a batch file with the following code to list files in folders and subfolders:
@echo off
cd c:\MyFolder
FOR /R %%i...
July 6, 2011 at 5:22 pm
Would you be interested in the other approach I implemented? I did Jeff's codes, but at another site I decided to do it differently using a batch file that...
July 6, 2011 at 4:55 pm
Dear Jeff, thanks very much. Also, lots of thanks for the recommendations. I'll post better next time.
March 9, 2011 at 3:24 pm
GSquared: Thank you, Thank you. It worked very well. Problem solved!
February 28, 2011 at 12:38 pm
Thank you Lynn for the reply. That is how I plan to implement it, but I thought I consult first with the experts if there is a better approach out...
January 22, 2010 at 10:33 am
Thanks for your code. You have no idea how useful this was to me. Although I'm from the DOS world in the 80's, I have forgotten the commands after almost...
November 12, 2009 at 12:42 pm
Oh definitely not. Other cube browsers do not display it that way.
May 26, 2009 at 8:27 am
Viewing 15 posts - 1 through 15 (of 25 total)