💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、星火、月之暗面及文生图 广告
# C.106 SymlinkTask Creates symlink(s) to a specified file / directory or a collection of files / directories. Table C.140:聽Attributes NameTypeDescriptionDefaultRequired`target``String`What you're trying to symlink fromn/aYes (or nested FileSet)`link``String`Where you'd like the symlink(s)n/aYes`overwrite``Boolean`Whether to override the symlink if it exists but points to a different location`false`No`relative``Boolean`Whether to create relative symlinks`false`No C.106.1 Example Single symlink `<symlink target="/path/to/original/file" link="/where/to/symlink" />`Using filesets ``` <symlink link="/where/to/symlink"> <fileset dir="/some/directory"> <include name="*" /> </fileset> </symlink> ``` In the fileset example, assuming the contents of "/some/directory" were: - Somedir - somefile Then the contents of "/where/to/symlink" would be: - Somedir -> /some/directory/Somedir - somefile -> /some/directory/somefile C.106.2 Supported Nested Tags - `fileset`