16 reputation
4
bio website
location
age
visits member for 11 months
seen Aug 10 '12 at 18:28
stats profile views 9

Aug
10
comment How to run FORTRAN program on all the files in a folder?
The 'test.txt' file contains names of all the files in the current folder to be input into the read function of the fortran program. Currently, to test it out, I have 2 files in there and I AM getting 2 files as outputs except that they're empty and names wierdly
Aug
10
comment How to run FORTRAN program on all the files in a folder?
I'm expecting an output with multiple files written to the folder after being processed named 'MODIFIED...txt'. However, as of now, I'm the only outputs I'm getting are 2 files of 0KB names '3' and 'M'. No idea where to start. The program successfully compiles and is able to execute though.
Aug
10
comment How to run FORTRAN program on all the files in a folder?
I've done the ls command in DOS and obtained the list of all the files in the current folder so that their names can be read by the program and all those files can be processed. But, I've got a problem running the program successfully on all the files: CHARACTER :: FILE_NAME, FILE_NAME2 OPEN(UNIT=10, FILE='print.txt') DO READ(10,'(A)', END=700) FILE_NAME FILE_NAME2 = ('MODIFIED' // FILE_NAME // '.txt') !!OPENS EXISTING FILE TO BE READ AND THEN PROGRAM WRITES IT TO 2ND MODIFIED FILE!! OPEN(UNIT=1, FILE=FILE_NAME) OPEN(UNIT=2, FILE=FILE_NAME2)
Aug
9
comment FORTRAN program produces blank output. Help me
I figured it all out successfully. Thanks guys. Now the issue is, how do I automatically cycle the program through a directory to input all the files with specific extensions?
Aug
8
comment FORTRAN program produces blank output. Help me
how to rewind in this case?
Aug
8
comment FORTRAN program produces blank output. Help me
I'm able to run the code successfully now because of the rewind. Thanks guys! But the code is still not processing after the J==A(1)+1 portion. I think the program is not able to access array A properly. Is there a problem with the way its being stored, declared or accessed?
Aug
8
comment FORTRAN program produces blank output. Help me
I'm using Microsoft Developer Studio in Fortran PowerStation 4.0. I know its old but I'm using F77. How do I rewind the file back?
Aug
7
comment FORTRAN program produces blank output. Help me
Yes I intend on reading the file for both the loops involving the integers K and J. I just debugged it successfully for the array A and realized that I am getting all the positions with '@' in ascending order but I'm getting all 5 times its being updated. What's wrong with the array and reading it twice?
Aug
7
comment FORTRAN program produces blank output. Help me
I debugged the output statements and realized that the first part of my program is not even going through. Can someone tell me what's wrong with the declarations or with the first DO loop?
Jun
5
comment Windows batch looping through subfolders and running a command
yeap! Thank you so much! Is there anyway of putting all those different subfolder aggregate data into different excel sheets?
Jun
5
comment Windows batch looping through subfolders and running a command
That helps a lot! But I'm trying to concatenate all the .dat files in each subfolder and leave the output .txt file in the subfolders itself. The above code helps me concatenate ALL the .dat files in ALL the subfolders.
Jun
5
comment Windows batch looping through subfolders and running a command
That helps a lot! But I'm trying to concatenate all the .dat files in each subfolder and leave the output .txt file in the subfolders itself. The above code helps me concatenate ALL the .dat files in ALL the subfolders.