ISFILEPATHATROOT-determineifafilepathisattherootornotB=ISFILEPATHROOT(FILEPATH)DeterminesifaFILEPATHisattherootofadriveornot.ForcomputersforwhichISPCistrue,ISFILEPATHROOTistrueiftheFILEPATHbeginswitheither'/'or'$:\'.ForcomputersforwhichISUNIXistrue,ISFILEPATHROOTistrueiftheFILEPATHis'/'.Notethatthefilepathdoesnothavetoexisttospecifyavalidfilepath.Itisjustwhetherithasthestructureofafullfilepath.Seealso:ISPC,ISUNIXExamples:% on unixisfilepathroot('/Volumes/test/mytestfile.txt')% trueisfilepathroot('myfile.txt')% false% on Windowsisfilepathroot('C:\myfolder\test')istrueisfilepathroot('/C/myfolder/test')istrue