Horje
powershell delete files older than 15 days Code Example
powershell delete files older than 15 days
Get-ChildItem "C:\temp" -Recurse -File | Where CreationTime -lt  (Get-Date).AddDays(-15)  | Remove-Item -Force




Shell

Related
get childitem of folder over 100 days old Code Example get childitem of folder over 100 days old Code Example
Key path "file:///home/user/projectname/storage/oauth-public.key" does not exist or is not readable Code Example Key path "file:///home/user/projectname/storage/oauth-public.key" does not exist or is not readable Code Example
git see stash Code Example git see stash Code Example
install dependencies @material-ui/lab/Rating Code Example install dependencies @material-ui/lab/Rating Code Example
sublime text download ubuntu Code Example sublime text download ubuntu Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
12