本文整理汇总了Java中android.system.Os.chmod方法的典型用法代码示例。如果您正苦于以下问题:Java Os.chmod方法的具体用法?Java Os.chmod怎么用?Java Os.chmod使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类android.system.Os
的用法示例。
在下文中一共展示了Os.chmod方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: chmod
import android.system.Os; //导入方法依赖的package包/类
/**
* @param path
* @param mode {@link FileMode}
* @throws Exception
*/
public static void chmod(String path, int mode) throws Exception {
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
try {
Os.chmod(path, mode);
return;
} catch (Exception e) {
e.printStackTrace();
}
}
File file = new File(path);
String cmd = "chmod ";
if (file.isDirectory()) {
cmd += " -R ";
}
String cmode = String.format("%o", mode);
Runtime.getRuntime().exec(cmd + cmode + " " + path).waitFor();
}
示例2: chmod
import android.system.Os; //导入方法依赖的package包/类
/**
* @param path
* @param mode {@link FileMode}
* @throws Exception
*/
public static void chmod(String path, int mode) throws Exception {
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
try {
Os.chmod(path, mode);
return;
} catch (Exception e) {
// ignore
}
}
File file = new File(path);
String cmd = "chmod ";
if (file.isDirectory()) {
cmd += " -R ";
}
String cmode = String.format("%o", mode);
Runtime.getRuntime().exec(cmd + cmode + " " + path).waitFor();
}
示例3: createRemoveSplitMarker
import android.system.Os; //导入方法依赖的package包/类
private void createRemoveSplitMarker(String splitName) throws IOException {
try {
final String markerName = splitName + REMOVE_SPLIT_MARKER_EXTENSION;
if (!FileUtils.isValidExtFilename(markerName)) {
throw new IllegalArgumentException("Invalid marker: " + markerName);
}
final File target = new File(resolveStageDir(), markerName);
target.createNewFile();
Os.chmod(target.getAbsolutePath(), 0 /*mode*/);
} catch (ErrnoException e) {
throw new IOException(e);
}
}
示例4: chmod
import android.system.Os; //导入方法依赖的package包/类
private static void chmod(String path,int mode){
try {
if (VERSION.SDK_INT >= VERSION_CODES.LOLLIPOP) {
Os.chmod(path, mode);
}else {
Runtime.getRuntime().exec("chmod "+mode+" "+path).destroy();
}
} catch (Exception e) {
e.printStackTrace();
}
}