ArcGISCompare.MiscProcs.fileNameONLY C# (CSharp) 메소드

fileNameONLY() 정적인 개인적인 메소드

static private fileNameONLY ( String fullName ) : String
fullName String
리턴 String
        internal static String fileNameONLY(String fullName)
        {
            FileInfo theF = new FileInfo(fullName);
              return theF.Name;
        }