当前位置: 首页>>代码示例>>C#>>正文


C# FilePath.HasExtension方法代码示例

本文整理汇总了C#中FilePath.HasExtension方法的典型用法代码示例。如果您正苦于以下问题:C# FilePath.HasExtension方法的具体用法?C# FilePath.HasExtension怎么用?C# FilePath.HasExtension使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在FilePath的用法示例。


在下文中一共展示了FilePath.HasExtension方法的9个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: CanHandle

		public bool CanHandle (FilePath fileName, string mimeType, Project ownerProject)
		{
			if (ownerProject == null || !XcodeProjectTracker.TrackerEnabled || !(ownerProject is IXcodeTrackedProject))
				return false;
			if (mimeType == "application/vnd.apple-interface-builder")
				return true;
			return fileName.IsNotNull && fileName.HasExtension (".xib");
		}
开发者ID:yayanyang,项目名称:monodevelop,代码行数:8,代码来源:XcodeInterfaceBuilderDisplayBinding.cs

示例2: CanHandle

 public bool CanHandle(FilePath fileName, string mimeType, Project ownerProject)
 {
     if (ownerProject == null || !(ownerProject is MonobjcProject)) {
         return false;
     }
     if (Constants.IB_MIME_TYPE.Equals (mimeType)) {
         return true;
     }
     return !fileName.IsNullOrEmpty && fileName.HasExtension (Constants.DOT_XIB);
 }
开发者ID:Monobjc,项目名称:monobjc-monodevelop,代码行数:10,代码来源:DeveloperToolsDisplayBinding.cs

示例3: HasInterfaceDefinitionExtension

		public virtual bool HasInterfaceDefinitionExtension (FilePath fileName)
		{
			return fileName.HasExtension (".xib");
		}
开发者ID:txdv,项目名称:monodevelop,代码行数:4,代码来源:XcodeProjectTracker.cs

示例4: CanHandle

		public bool CanHandle (FilePath filePath, string mimeType, Project project)
		{
			return filePath.IsNotNull && filePath.HasExtension (".po");
		}
开发者ID:pabloescribanoloza,项目名称:monodevelop,代码行数:4,代码来源:GettextEditorDisplayBinding.cs

示例5: CanHandle

		public bool CanHandle (FilePath fileName, string mimeType, Project ownerProject)
		{
			return (fileName.IsNotNull && fileName.HasExtension (".desktop"))
				|| (mimeType != null && mimeType == "application/x-desktop");
		}
开发者ID:FreeBSD-DotNet,项目名称:monodevelop,代码行数:5,代码来源:DotDesktopDisplayBinding.cs

示例6: FileExtensionIsProper

		public void FileExtensionIsProper ()
		{
			var path = new FilePath ("asdf.txt");
			Assert.AreEqual ("asdf.txt", path.FileName);
			Assert.IsTrue (path.HasExtension (".txt"));
			Assert.AreEqual (".txt", path.Extension);
			Assert.AreEqual ("asdf", path.FileNameWithoutExtension);

			path = new FilePath (".gitignore");
			Assert.False (path.HasExtension (".gitignore"));
			Assert.AreEqual (".gitignore", path.FileName);
			Assert.AreEqual (".gitignore", path.Extension);
			Assert.AreEqual ("", path.FileNameWithoutExtension);
		}
开发者ID:pabloescribanoloza,项目名称:monodevelop,代码行数:14,代码来源:FilePathTests.cs

示例7: HasPageExtension

		public virtual bool HasPageExtension (FilePath fileName)
		{
			return fileName.HasExtension (".xib");
		}
开发者ID:louissalin,项目名称:monodevelop,代码行数:4,代码来源:XcodeProjectTracker.cs

示例8:

 bool IDisplayBinding.CanHandle(FilePath fileName, string mimeType, Project ownerProject)
 {
     return ownerProject != null && ((fileName.IsNotNull && fileName.HasExtension (".cd"))
             || (mimeType != null && mimeType == "class-diagram"));
 }
开发者ID:erbriones,项目名称:monodevelop-classdesigner,代码行数:5,代码来源:ClassDiagramDisplayBinding.cs

示例9: CanHandle

		public bool CanHandle (FilePath fileName, string mimeType, Project ownerProject)
		{
			return fileName.IsNotNull && fileName.HasExtension (".sql");
		}
开发者ID:raufbutt,项目名称:monodevelop-old,代码行数:4,代码来源:SqlQueryDisplayBinding.cs


注:本文中的FilePath.HasExtension方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。