����JFIF���������
__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
# Copyright (c): 2018, Dag Wieers (@dagwieers) <dag@wieers.com>
# Simplified BSD License (see licenses/simplified_bsd.txt or https://opensource.org/licenses/BSD-2-Clause)
Function Backup-File {
<#
.SYNOPSIS
Helper function to make a backup of a file.
.EXAMPLE
Backup-File -path $path -WhatIf:$check_mode
#>
[CmdletBinding(SupportsShouldProcess = $true)]
Param (
[Parameter(Mandatory = $true, ValueFromPipeline = $true)]
[string] $path
)
Process {
$backup_path = $null
if (Test-Path -LiteralPath $path -PathType Leaf) {
$backup_path = "$path.$pid." + [DateTime]::Now.ToString("yyyyMMdd-HHmmss") + ".bak";
Try {
Copy-Item -LiteralPath $path -Destination $backup_path
}
Catch {
throw "Failed to create backup file '$backup_path' from '$path'. ($($_.Exception.Message))"
}
}
return $backup_path
}
}
# This line must stay at the bottom to ensure all defined module parts are exported
Export-ModuleMember -Function Backup-File
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| __pycache__ | Folder | 0755 |
|
|
| Ansible.ModuleUtils.AddType.psm1 | File | 17.83 KB | 0644 |
|
| Ansible.ModuleUtils.ArgvParser.psm1 | File | 3.25 KB | 0644 |
|
| Ansible.ModuleUtils.Backup.psm1 | File | 1.08 KB | 0644 |
|
| Ansible.ModuleUtils.CamelConversion.psm1 | File | 2.4 KB | 0644 |
|
| Ansible.ModuleUtils.CommandUtil.psm1 | File | 3.6 KB | 0644 |
|
| Ansible.ModuleUtils.FileUtil.psm1 | File | 2.15 KB | 0644 |
|
| Ansible.ModuleUtils.Legacy.psm1 | File | 12.46 KB | 0644 |
|
| Ansible.ModuleUtils.LinkUtil.psm1 | File | 17.35 KB | 0644 |
|
| Ansible.ModuleUtils.PrivilegeUtil.psm1 | File | 2.8 KB | 0644 |
|
| Ansible.ModuleUtils.SID.psm1 | File | 3.55 KB | 0644 |
|
| Ansible.ModuleUtils.WebRequest.psm1 | File | 18.73 KB | 0644 |
|
| __init__.py | File | 0 B | 0644 |
|