subFile method

CFile subFile(
  1. String subname
)

获取当前目录下的指定子文件。

subname 子文件的名称。

返回一个CFile对象,表示子文件。

Implementation

CFile subFile(String subname) {
  return CFile('$filename${Platform.pathSeparator}$subname');
}