Apache Ant Tasks 简明教程

Apache Ant Tasks - BaseName

Description

Basename 任务确定指定文件/目录的基本名称,同时移除通过的后缀(如果已通过)。如果是文件的完整路径,则使用文件的名称。如果是目录路径,则使用最后一个目录的名称。

Properties

Sr.No

Attributes & Description

1

File 获取基本名称的路径。(强制)

2

Property 要设置的属性的名称。(强制)

3

Suffix 从结果基本名称(使用或不使用 . 指定)中移除的后缀。(可选)

Example

Usage

使用以下内容创建 build.xml −

<?xml version="1.0"?>
<project name="TutorialPoint" default="info">
   <target name="info">
      <basename property="cmdname" file="D:/usr/local/application.exe"
         suffix=".exe"/>
      <echo message="${cmdname}"></echo>
   </target>
</project>

Output

在上述构建文件上运行 Ant 会生成以下输出:

F:\tutorialspoint\ant>ant
Buildfile: F:\tutorialspoint\ant\build.xml

info:
   [echo] application

BUILD SUCCESSFUL
Total time: 0 seconds