Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
wp-content
/
plugins
/
duplicator
/
lib
/
snaplib
:
class.snaplib.u.os.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php /* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ if(!class_exists('SnapLibOSU')) { class SnapLibOSU { const WindowsMaxPathLength = 259; public static $isWindows; public static function init() { self::$isWindows = (strtoupper(substr(PHP_OS, 0, 3)) === 'WIN'); } } SnapLibOSU::init(); }