zenewbie Client Регистрация 25.12.2013 Сообщения 214 Благодарностей 17 Баллы 18 06.11.2021 #1 Is there a way to read the details from a file, for example when "xyz.jpg" was last modified?
nicanil Client Регистрация 06.03.2016 Сообщения 2 242 Благодарностей 1 820 Баллы 113 06.11.2021 #2 You can do it with this C# snippet: C#: var fileInfo = new FileInfo(project.Variables["filepath"].Value); return fileInfo.LastWriteTime; There should be a "filepath" variable in your project where full path to a file is stored. Реакции: GLADO
You can do it with this C# snippet: C#: var fileInfo = new FileInfo(project.Variables["filepath"].Value); return fileInfo.LastWriteTime; There should be a "filepath" variable in your project where full path to a file is stored.
zenewbie Client Регистрация 25.12.2013 Сообщения 214 Благодарностей 17 Баллы 18 06.11.2021 #3 Thanks a lot!