为什么Perl找不到ClearCase中的文件?这段Perl告诉我,ClearCase中的文件在它存在时不存在;$x = "PATH/TO/FILE"if (-e $x) {
print "This file exists on the file system";} else {
print "I can't see this file";}有人见过这个吗?有些文件返回很好。把我弄糊涂了。ClearCase视图是动态的,托管在Unix上。这段代码返回的是一个文件存在,而另一个文件在同一视图上的同一文件夹中时不存在。
3 回答
繁星coding
TA贡献1797条经验 获得超4个赞
ClearCase将其“文件”存储为目录
$ ct ls myFile $ ct descr -l myFile myFile@@/main/3
$ cd myFile@@ $ ls main $ cd main $ ls3$ cat 3... // content of third version of myFile
潇湘沐
TA贡献1816条经验 获得超6个赞
慕容3067478
TA贡献1773条经验 获得超3个赞
/foo/bar@@/main/1/baz.txt@@/main/3
添加回答
举报
0/150
提交
取消