Android File Basic operation

Source: Internet
Author: User

1. Traverse files under the specified folder:
    New File ("/test"). Listfiles ();       for      "\ n";   LOG.I ("sang","result = ="+Result );    }          

2. Get the file modification time and delete the file:
if(File.exists () &&File.isfile ()) {Long time=file.lastmodified ();//gets the last time the file was modified, which is a timestamp    if(File.delete ()) {LOG.E ("Sang","Delete succeeded"); }Else{LOG.E ("Sang","Delete Failed"); }}

If you do not have permission, you can manually modify the permissions of the file, such as:

"" += runtime.getruntime ();   Try {    catch  (IOException e) {    e.printstacktrace ();}

In addition to the file operation, you need to add these 2 permissions in the Mainfest.xml file

<!--permission to write data to SDcard

<uses-permission android:name= "Android.permission.WRITE_EXTERNAL_STORAGE" ></uses-permission>

<!--permissions to create/delete files in SDcard-

<uses-permission android:name= "Android.permission.MOUNT_UNMOUNT_FILESYSTEMS" ></uses-permission>

Android File Basic operation

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.