3 liens privés
Modifier les droits des répertoires sur un chmod malheureux
sudo find . -type f -exec chmod 664 {} +
sudo find . -type d -exec chmod 775 {} +
sudo chmod 660 wp-config.php
define('FS_METHOD', 'direct');
Attention aux wp-uploads, etc... Bref, wordpress...
Path dir = Paths.get(String dirname);
// try with resources
try (DirectoryStream<Path> stream = Files.newDirectoryStream(dir, "*.xml")) {
if (stream != null) {
for (Path file : stream) {
BasicFileAttributes attrs = Files.readAttributes(path, BasicFileAttributes.class);
}
}
}
Pense-bête :
absolute : "/bla/../bla2/test"
canonical : "/bla2/test"
Pour avoir les dates de création / accès / modification d'un fichier
Couper un fichier entre L1 (1ere occurence text1) et L2 (1ere occurence text2)
wc -l <file> => retourne T (nombre de ligne totale)
grep -n -m 1 <text1> <file> => retourne L1
tail -n (T-L1) <file> > bottom_file
grep -n -m 1 <text2> bottom_file => retourne L2
head -n (L2) file_bottom > result