How to generate log file with new file only

Hi all

I have mounted my S3 and want to get a log file to find out when a new file is loaded, without any other info. Only new file loaded. I don't know much on the command line, so if anyone could share the command with me?

Thanks in advance.

hello and welcome to the forum,

when you posted, you should have been asked questions......

can you post a snippet from the log, of what you want to see?

Hi and thanks for help.

I'm trying to obtain a log file with the new file copied only.
2020/05/19 18:01:54 INFO : Folder/NewDoc.txt: Copied (new)

Now i see all action:
2020/05/19 18:01:54 INFO : Folder/NewDoc.txt: Copied (new)
2020/05/19 18:02:07 INFO : Folder/Expan.lnk: Copied (new)
2020/05/19 18:02:24 INFO : Folder/NewDoc.txt: Removed from cache
2020/05/19 18:02:24 INFO : Folder/Expan.lnk: Removed from cache
2020/05/19 18:02:24 INFO : Folder/NDILibDotNet2.dll: Removed from cache

I use --log-file "mypath\logfile.txt" --log-level INFO --copy-links

Is possible?
Thanks in advance

you are on windows?

findstr "Copied (new)" logfile.txt > newfiles.txt

Yes on Windows.

try this
findstr "Copied (new)" logfile.txt > newfiles.txt

This topic was automatically closed 60 days after the last reply. New replies are no longer allowed.