代码搜索:FileTest
找到约 225 项符合「FileTest」的源代码
代码结果 225
www.eeworm.com/read/423630/2025686
java filetest.java
package cn.netjava.mmsclient.util;
import java.io.*;
/**
*
* Title:中国移动mm7协议客户端 V0.1
* Description: 测试文件
* Company:蓝杰实训
* @author NetJava.cn
* @version 0.1
www.eeworm.com/read/407756/2259008
filetest1
#!/bin/tcsh -f
# Scriptname: filetest1
if ( -e file ) then
echo file exists
endif
if ( -d file ) then
echo file is a directory
endif
if ( ! -z file ) then
echo file is not of zero length
en
www.eeworm.com/read/407756/2259009
filetest2
#!/bin/tcsh -f
# Scriptname: filetest2
foreach file (`ls`)
if ( -rwf $file ) then
echo "${file}: readable/writeable/plain file"
endif
end
www.eeworm.com/read/407754/2259140
java filetest.java
package org.bepl.test;
public class FileTest {
public void output(String outPath) {
}
public void input(String inputPath) {
}
private String path;
}
www.eeworm.com/read/362572/2931058
java filetest.java
import java.io.File;
public class FileTest {
public static void exists(File f) {
String type = "File";
if (f.isDirectory()) { type = "Directory"; }
System.out.print(type + " \"
www.eeworm.com/read/358128/3000630
pm filetest.pm
package filetest;
our $VERSION = '1.02';
=head1 NAME
filetest - Perl pragma to control the filetest permission operators
=head1 SYNOPSIS
$can_perhaps_read = -r "file"; # use the mode bits
www.eeworm.com/read/358128/3005531
3 filetest.3
.\" Automatically generated by Pod::Man 2.16 (Pod::Simple 3.05)
.\"
.\" Standard preamble:
.\" ========================================================================
.de Sh \" Subsection heading
.br
www.eeworm.com/read/267757/4259096
java filetest.java
/*
* 北大青鸟APTECH
* 版权所有
*/
import java.io.File;
import java.io.*;
/**
* 这是一个显示文件消息信息的类.
*/
class FileTest {
/**
* 构造方法
*/
public FileTest () {
}
www.eeworm.com/read/255500/4374538
cpp filetest.cpp
//
// FileTest.cpp
//
// $Id: //poco/1.2/Foundation/testsuite/src/FileTest.cpp#1 $
//
// Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH.
// and Contributors.
//
// Permission i