I'm getting my file names, randomly I believe, but getting them with this.
public static string getXMLrequestFileNames()
{
string path = requestsFolder;
fileName = "";
int count = 0;
foreach (string s in Directory.GetFiles(path, "*.xml").Select(Path.GetFileName))
{
fileName = "\\" + s;
count++;
}
return fileName;
}
I place the file name in a string
and hold it for deletion. When I delete the file with the following code, I'm still seeing the last file name from above.
private static void deleteRequest()
{
string curFileWeekDelete = (filename);
bool test = false;
if (File.Exists(requestsFolder + curFileWeekDelete))
{
string[] getAppPaths = Directory.GetFiles(requestsFolder);
test = getAppPaths.Contains(requestsFolder + curFileWeekDelete);
foreach (string getAppPath in getAppPaths)
if (test == true)
{
File.Delete(requestsFolder + curFileWeekDelete);
//filename = "";
}
}
}
Once the file is deleted I run through getXMLrequestFileNames()
again. The next file loads appropriately but the file name being found is the deleted file name?!
I can see many errors in your code:
whats the point of
count
variable? you are not using it anywhereConsider using input parameters rather than using some magic global variables like:
delete request can be changed to:
getXMLrequestFileNames() returns only last found file not all file names, consider: