mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-15 04:55:22 +02:00
new API IFileService.setReadOnly()
This commit is contained in:
parent
74822bd918
commit
5855d743b6
1 changed files with 19 additions and 1 deletions
|
@ -1326,7 +1326,25 @@ public class LocalFileService extends AbstractFileService implements IFileServic
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
// not implemented yet
|
if (!_isWindows)
|
||||||
|
{
|
||||||
|
// make this read-write
|
||||||
|
String[] cmd = new String[3];
|
||||||
|
cmd[0] = "chmod"; //$NON-NLS-1$
|
||||||
|
cmd[1] = "a+w"; //$NON-NLS-1$
|
||||||
|
cmd[2] = file.getAbsolutePath();
|
||||||
|
int exitValue = -1;
|
||||||
|
try
|
||||||
|
{
|
||||||
|
Process p = Runtime.getRuntime().exec(cmd);
|
||||||
|
exitValue = p.waitFor();
|
||||||
|
}
|
||||||
|
catch (Exception e)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
return (exitValue == 0);
|
||||||
|
}
|
||||||
|
// windows version not implemented yet
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue