The file is present but Powershell keeps saying file is missing. I have no idea. I looked at the permissions and current user has full rights.
$csvDocLib = "C:\\PowerShell\TestLib.csv"
$csvDocSet = "C:\\PowerShell\TestDocSet.csv"
the first csv is found and code works but down the code line i need the second csv and it said not found but it's in same directory. I tried renaming and still the same.
if([IO.File]::Exists($csvDocSet) -ne $false)
{
write-host $csvDocSet " not found"
exit
}