Set file execution, write permissions in Linux platform

Source: Internet
Author: User

recently encountered a problem in the development process, the file copy, some executables in the Linux platform will have a loss of permissions, such as: An EXE file on the Windows platform does not involve permissions, The issue of permission loss occurs when copying Java code to Linux. Finally only through the file copy, and then through the code to set permissions such as file read and write and execute permissions.

/**

* Function Description: Set file execution, write permission, Linux <br>

* @param fileName

* @param able

* @param owneronly

* @return Boolean value

*/

public static Boolean setwritandexecutabled (String filename,boolean Able,boolean owneronly) {

try {

File File = new file (fileName);

if (file.exists () && file.isfile ()) {

Set executable permissions that everyone can

file.setwritable (able,owneronly);

File.setexecutable (able,owneronly);

}

return true;

} catch (Exception e) {

E.printstacktrace ();

return false;

}

}


Set file execution, write permissions in Linux platform

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.