0

我正在尝试复制 etc 文件夹中的文件,为此我在按钮中使用下一个代码:

changeNTP.setOnClickListener(new View.OnClickListener() {
                public void onClick(View v) {
                    File exists = new File("/etc/gps.conf");
                    if (exists.exists()) {
                        // We make a backup first
                        CommandCapture command = new CommandCapture(0, "cp -f /etc/gps.conf /etc/gps" + System.currentTimeMillis() + ".conf");
                        try {
                            RootTools.getShell(true).add(command);
                        } catch (IOException e) {
                            // TODO Auto-generated catch block
                            e.printStackTrace();
                        } catch (TimeoutException e) {
                            // TODO Auto-generated catch block
                            e.printStackTrace();
                        } catch (RootDeniedException e) {
                            // TODO Auto-generated catch block
                            e.printStackTrace();
                        }
                        // Last time that file was modified
                        //Date filedate = new Date(exists.lastModified());
                    }
                }

            });

好吧,问题是它没有复制任何东西。可能是什么问题呢?

谢谢。

4

1 回答 1

1

好的,下一个是最好的解决方案:

int date = (int) System.currentTimeMillis();
String source = "/system/etc/gps.conf";
String destination = "/system/etc/gps" + date + ".conf";

if(RootTools.remount("/system/etc/", "rw")){
   RootTools.copyFile(source, destination, true, true);
}

问题是之前我指向/etc,但是这个位置是一个符号链接,真正的路径是/system/etc。显然我们不能改变符号链接的挂载类型,所以,我刚刚发布的之前的代码是很好的答案。

谢谢。

于 2013-09-12T22:53:15.253 回答