Is there any possible solutions for C# how to check if the file exists even if the file is located in the .zip directory?
A possible path would be: "\\127.0.0.1\ZIP-Bug-Study\TestResultMap\market_coupling_ntc_preoptimization\temp.zip\file.csv"
I would need a solution without splitting the string and so on, simply something like:
FileInfo fi = new FileInfo(path);
if (fi.Exists) { }