Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi all
I am loading multiple log files in a folder using ' * '
but i am unable to load all the log files using relative path
I have given the relative path as below but I am unable to load the files
Let vPath='..\IISLogs';
FROM
[($vPath)\IISLogs\DEV\a_*.log]
(txt, codepage is 1252, explicit labels, comment is #, delimiter is spaces);
Thank you
You seem to be repeating IISLogs folder twice, once in your variable and once again in path. Do you have two folder IISLogs? Or is that what the issue might be?
Which are the ones which don't load? Do you share there name? Alternatively, you can load using Loops in the Script
I am unable to load any files.
I am getting the error as system can not find the path specified..
You seem to be repeating IISLogs folder twice, once in your variable and once again in path. Do you have two folder IISLogs? Or is that what the issue might be?
May be you need this
Let vPath='..\IISLogs';
FROM
[($vPath)\DEV\a_*.log]
(txt, codepage is 1252, explicit labels, comment is #, delimiter is spaces);
Hi sunny
No, I don't have two IISLogs Folder
Now, I have removed the IISLogs in the from but, I couldnt load the files..
Unless you share more details, I think it would be difficult to know what might not be working here.