Demigorgon
Programmer
Hello tekies,
I am needing to open a file with a 3 part naming convention:
dateProcessed_dateCreated_timeStamp.txt
i.e. 092206_012307_0753.txt
I can get the first 2 dates fairly easily, but the timestamp will always be an unknown, so when opening the file I want to disclude that part : i.e.
Open "\C:092206_011207_" & "####" & ".txt" For Input As #1 -something to that effect.
Now, I know I can get the time stamp, but the goal is trying to concatinate 4 files into one, all with different timestamps. So the dates will be consistant, but the timestamps will never be the same, hence why I want to get rid of them when using it as a criteria.
Thanks!
I am needing to open a file with a 3 part naming convention:
dateProcessed_dateCreated_timeStamp.txt
i.e. 092206_012307_0753.txt
I can get the first 2 dates fairly easily, but the timestamp will always be an unknown, so when opening the file I want to disclude that part : i.e.
Open "\C:092206_011207_" & "####" & ".txt" For Input As #1 -something to that effect.
Now, I know I can get the time stamp, but the goal is trying to concatinate 4 files into one, all with different timestamps. So the dates will be consistant, but the timestamps will never be the same, hence why I want to get rid of them when using it as a criteria.
Thanks!