Choreoh.DanceRoutine.saveAlreadyExists C# (CSharp) Method

saveAlreadyExists() public static method

public static saveAlreadyExists ( String songFilename ) : System.Boolean
songFilename String
return System.Boolean
        public static Boolean saveAlreadyExists(String songFilename)
        {
            String saveName = getSaveDestinationName(songFilename);
            return File.Exists(saveName);
        }