CSKernelFile.cFileEx.fileGetPath C# (CSharp) Method

fileGetPath() public method

public fileGetPath ( String fullPath ) : String
fullPath String
return String
        public String fileGetPath(String fullPath)
        {
            String path = "";
            String fileName = "";

            separatePathAndFileName(fullPath, ref path, ref fileName);

            return path;
        }