using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; using System.IO; namespace WindowsFormsApplication1获取目录下文件 { publi…
很多时候,我们都将配置文件放在eclipse的src目录下,这个位置,相当于,当导出可执行jar包后,配置文件放在和jar同级的目录中,比如jar包放在/opt目录下,则配置文件放在/opt下,则jar包就可以读取配置文件中的内容.此时,java代码中可以通过 String path=CommonOperation.class.getResource("/").getPath(); FileInputStream fin = new FileInputStream(path+"…
查看当前目录下的文件: find . -type f 查看当前目录下的文件夹: find . -type d 如果文件file1不为空: if [ -s file1 ];then echo "file1 不为空" fi #!/bin/sh for f in `find ./testdir -type f`; do if [ -s $f ];then echo $f is not empty. ec…