Register Register Member Login Member Login Member Login Forgot Password ??
PHP , ASP , ASP.NET, VB.NET, C#, Java , jQuery , Android , iOS , Windows Phone
 

Registered : 109,027

HOME > Client Script Forum > Batch file ผมต้องการ copy file ที่มีอายุเกิน 1 วันแต่ไม่เกิน 15 วัน เขียนยังไงครับ



 

Batch file ผมต้องการ copy file ที่มีอายุเกิน 1 วันแต่ไม่เกิน 15 วัน เขียนยังไงครับ

 



Topic : 129746



โพสกระทู้ ( 156 )
บทความ ( 0 )



สถานะออฟไลน์




ผมต้องการ copy file ที่มีอายุเกิน 1 วันแต่ไม่เกิน 15 วันโดยมีการ copy ข้อมูลแบบนี้ครับ

ตัวอย่าง...........................................................
D:OUTPUT/ AAA/2017 /12 / 1 / ข้อมูล
D:OUTPUT/ AAA/2017 /12 / 2 / ข้อมูล
D:OUTPUT/ AAA/2017 /12 / 3 / ข้อมูล
......................................................................

D:OUTPUT/ AAA/2017 /12 / folder วันที่ 1-31 / ข้อมูล
D:OUTPUT/ BBB/2017 /12 / folder วันที่ 1-31 / ข้อมูล
D:OUTPUT/ CCC/2017 /12 / folder วันที่ 1-31 / ข้อมูล
D:OUTPUT/ DDD/2017 /12 / folder วันที่ 1-31 / ข้อมูล

โดยเรียงจาก ปี/เดือน/วัน ครับ โดยความต้องการของผมให้มัน copy เฉพาะไฟล์ ที่อายุมากกว่า 1 วันแต่ไม่เกิน 15 วันเช่นวันนี้วันที่ 20/12/2017 ให้ไป copy ของวันที่ 4-19 ครับผม เมื่อขึ้นเดือนใหม่ โฟเดอร์เดือนก็จะเปลี่ยนตามครับ ปีก็เช่นเดียวกัน ตอนนี้ผมทำได้แค่ copy ทั้งหมดครับ ยังแยกวันไมไ่ด้

โค๊ดตอนนี้ประมาณนี้ครับ

Code
@ECHO OFF : OUT folder @echo off for /f "tokens=2 delims==" %%G in ('wmic os get localdatetime /value') do set datetime=%%G set year=%datetime:~0,4% set month=%datetime:~4,2% set day=%datetime:~6,2% : PRE-AOI "Destination-xx-xx-xxx-xxx" "Source-xx-xx-xxx-xxx" xcopy K:\PreAOI_DB\OUT\*.* K:\PreAOI_DB\FileBackupTest\ /s : PRE-AOI :"Start 7z" "Destination-xx-xx-xxx-xxx" "Source-xx-xx-xxx-xxx" @"%PROGRAMFILES%\7-ZIP\7z.exe" a -t7z "O:\xx-xx-xxx-xxx.xxx_test\OUT\PreAOI_DB_OUT_TEST_%year%%month%%day%.7z" "K:\PreAOI_DB\FileBackupTest" PAUSE EXIT




Tag : JavaScript, VBScript, Action Script









ประวัติการแก้ไข
2017-12-20 08:30:59
2017-12-20 08:32:47
2017-12-20 08:33:23
Move To Hilight (Stock) 
Send To Friend.Bookmark.
Date : 2017-12-20 08:29:22 By : bankguszo View : 8131 Reply : 6
 

 

No. 1



โพสกระทู้ ( 9,554 )
บทความ ( 2 )



สถานะออฟไลน์


แก้ไขเพราะผิดวัตถุประสงค์

น่าใช้ php กำหนดวันที่ก่อน แล้วเอาวันที่มากำหนด path จะทำอะไรต่อก็ว่ากันไป


เพื่อเป็นประโยชน์
https://stackoverflow.com/questions/51054/batch-file-to-delete-files-older-than-n-days








ประวัติการแก้ไข
2017-12-20 10:03:41
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2017-12-20 09:47:46 By : Chaidhanan
 


 

No. 2



โพสกระทู้ ( 156 )
บทความ ( 0 )



สถานะออฟไลน์


ตามลิ้งผมได้ลองใช้แล้วครับ แต่มัน copy แต่ตัวข้อมูลมาครับ เช่น .txt .csv มันไม่เอาโฟเดอร์มาทั้งหมด (aaa/ปี/เดือน/วัน) มานั่งเปลี่ยนคำสั่ง หลายอันแล้วครับ ไม่ได้สักที


ประวัติการแก้ไข
2017-12-20 11:29:16
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2017-12-20 11:27:41 By : bankguszo
 

 

No. 3

Guest


สนใจกระทู้นี้ครับ

ต้องการ ลบไฟล์ และcopy file จากวันเดือนปี เช่น 1 2 3 4 5 6 7 8 9 10 11 12 13
ต้องการลบ 1-10 และ 11 12 13 ไม่ต้องการลบ

Code (C#)
@echo off

for /F "usebackq tokens=1,2 delims==" %%i in (`wmic os get LocalDateTime /VALUE 2^>NUL`) do if '.%%i.'=='.LocalDateTime.' set ldt=%%j
set ldt=%ldt:~0,4%%ldt:~4,2%%ldt:~6,2%-%ldt:~8,2%%ldt:~10,2%%ldt:~12,2%
xcopy test c:\loadcell\%ldt%\ /s/e/y

del test /Q

path C:\Program Files\7-Zip
7z a "c:\loadcell\%ldt%.7z" "c:\loadcell\%ldt%"
rmdir /s c:\loadcell\%ldt%\ /Q


ตอนนี้ ลบและคัดลอก ทั้งหมดครับ
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2020-09-29 01:44:10 By : mini
 


 

No. 4



โพสกระทู้ ( 1,458 )
บทความ ( 0 )



สถานะออฟไลน์
Twitter Facebook Blogger

ตอบความคิดเห็นที่ : 3 เขียนโดย : mini เมื่อวันที่ 2020-09-29 01:44:10
รายละเอียดของการตอบ ::
ระหว่าง งานเสร็จ กับ ความรู้ ต้องการสิ่งใดมากกว่ากัน

ถ้าอย่างแรกแนะนำให้จ้างเอาครับเพราะ cmd/batch script เป็น Advanced/Custom/Low/Unreliable script for Easy Task(not for Complicated/Complex Analysis) หรือ ไม่ก็เปลี่ยนไปใช้ VBScript หรือ PowerShell แทน หรือเขียน Desktop Apps ไปเลย
https://docs.microsoft.com/en-us/previous-versions//d1wf56tt(v=vs.85)
https://docs.microsoft.com/en-us/previous-versions/tn-archive/ee692768(v=technet.10)
https://docs.microsoft.com/en-us/powershell/

แต่ถ้าเป็นอย่างหลัง :
ถ้าถามว่าใน cmd/batch ทำได้ไหม? ทำได้แต่ไม่เหมาะกับ Big Data และจำเป็นต้องศึกษาหลายเรื่องไปพร้อมๆ กัน

1. วิธีการใช้คำสั่งพื้นฐาน-ระดับสูงและไวยากรณ์ ของ command line ดู help ด้วย /? หรือ
https://ss64.com/nt/

*2. WMI (ควรศึกษาถ้าอยากใช้ wmic)
https://docs.microsoft.com/en-us/windows/win32/wmisdk/wmi-start-page

*3. WQL (ควรศึกษาถ้าอยากใช้ wmic)
https://docs.microsoft.com/en-us/windows/win32/wmisdk/wql-sql-for-wmi

*4. CIM Classes (ดูเป็นอ้างอิง สำหรับ wmic)
https://docs.microsoft.com/en-us/windows/win32/wmisdk/cimclas

5. WMIC
https://docs.microsoft.com/en-us/windows/win32/wmisdk/wmic

* 2-4 ไม่จำเป็น แต่จะเป็นประโยชน์และง่ายต่อการทำความเข้าใจ WMIC


ตัวอย่างการใช้ /? เพื่อดู help ของคำสั่งใน cmd
C:\Users\YourUser>wmic /? [global switches] <command> The following global switches are available: /NAMESPACE Path for the namespace the alias operate against. /ROLE Path for the role containing the alias definitions. /NODE Servers the alias will operate against. /IMPLEVEL Client impersonation level. /AUTHLEVEL Client authentication level. /LOCALE Language id the client should use. /PRIVILEGES Enable or disable all privileges. /TRACE Outputs debugging information to stderr. /RECORD Logs all input commands and output. /INTERACTIVE Sets or resets the interactive mode. /FAILFAST Sets or resets the FailFast mode. /USER User to be used during the session. /PASSWORD Password to be used for session login. /OUTPUT Specifies the mode for output redirection. /APPEND Specifies the mode for output redirection. /AGGREGATE Sets or resets aggregate mode. /AUTHORITY Specifies the <authority type> for the connection. /?[:<BRIEF|FULL>] Usage information. For more information on a specific global switch, type: switch-name /? The following alias/es are available in the current role: ALIAS - Access to the aliases available on the local system BASEBOARD - Base board (also known as a motherboard or system board) management. BIOS - Basic input/output services (BIOS) management. BOOTCONFIG - Boot configuration management. CDROM - CD-ROM management. COMPUTERSYSTEM - Computer system management. CPU - CPU management. CSPRODUCT - Computer system product information from SMBIOS. DATAFILE - DataFile Management. DCOMAPP - DCOM Application management. DESKTOP - User's Desktop management. DESKTOPMONITOR - Desktop Monitor management. DEVICEMEMORYADDRESS - Device memory addresses management. DISKDRIVE - Physical disk drive management. DISKQUOTA - Disk space usage for NTFS volumes. DMACHANNEL - Direct memory access (DMA) channel management. ENVIRONMENT - System environment settings management. FSDIR - Filesystem directory entry management. GROUP - Group account management. IDECONTROLLER - IDE Controller management. IRQ - Interrupt request line (IRQ) management. JOB - Provides access to the jobs scheduled using the schedule service. LOADORDER - Management of system services that define execution dependencies. LOGICALDISK - Local storage device management. LOGON - LOGON Sessions. MEMCACHE - Cache memory management. MEMORYCHIP - Memory chip information. MEMPHYSICAL - Computer system's physical memory management. NETCLIENT - Network Client management. NETLOGIN - Network login information (of a particular user) management. NETPROTOCOL - Protocols (and their network characteristics) management. NETUSE - Active network connection management. NIC - Network Interface Controller (NIC) management. NICCONFIG - Network adapter management. NTDOMAIN - NT Domain management. NTEVENT - Entries in the NT Event Log. NTEVENTLOG - NT eventlog file management. ONBOARDDEVICE - Management of common adapter devices built into the motherboard (system board). OS - Installed Operating System/s management. PAGEFILE - Virtual memory file swapping management. PAGEFILESET - Page file settings management. PARTITION - Management of partitioned areas of a physical disk. PORT - I/O port management. PORTCONNECTOR - Physical connection ports management. PRINTER - Printer device management. PRINTERCONFIG - Printer device configuration management. PRINTJOB - Print job management. PROCESS - Process management. PRODUCT - Installation package task management. QFE - Quick Fix Engineering. QUOTASETTING - Setting information for disk quotas on a volume. RDACCOUNT - Remote Desktop connection permission management. RDNIC - Remote Desktop connection management on a specific network adapter. RDPERMISSIONS - Permissions to a specific Remote Desktop connection. RDTOGGLE - Turning Remote Desktop listener on or off remotely. RECOVEROS - Information that will be gathered from memory when the operating system fails. REGISTRY - Computer system registry management. SCSICONTROLLER - SCSI Controller management. SERVER - Server information management. SERVICE - Service application management. SHADOWCOPY - Shadow copy management. SHADOWSTORAGE - Shadow copy storage area management. SHARE - Shared resource management. SOFTWAREELEMENT - Management of the elements of a software product installed on a system. SOFTWAREFEATURE - Management of software product subsets of SoftwareElement. SOUNDDEV - Sound Device management. STARTUP - Management of commands that run automatically when users log onto the computer system. SYSACCOUNT - System account management. SYSDRIVER - Management of the system driver for a base service. SYSTEMENCLOSURE - Physical system enclosure management. SYSTEMSLOT - Management of physical connection points including ports, slots and peripherals, and proprietary connections points. TAPEDRIVE - Tape drive management. TEMPERATURE - Data management of a temperature sensor (electronic thermometer). TIMEZONE - Time zone data management. UPS - Uninterruptible power supply (UPS) management. USERACCOUNT - User account management. VOLTAGE - Voltage sensor (electronic voltmeter) data management. VOLUME - Local storage volume management. VOLUMEQUOTASETTING - Associates the disk quota setting with a specific disk volume. VOLUMEUSERQUOTA - Per user storage volume quota management. WMISET - WMI service operational parameters management. For more information on a specific alias, type: alias /? CLASS - Escapes to full WMI schema. PATH - Escapes to full WMI object paths. CONTEXT - Displays the state of all the global switches. QUIT/EXIT - Exits the program. For more information on CLASS/PATH/CONTEXT, type: (CLASS | PATH | CONTEXT) /? C:\Users\YourUser>wmic datafile/? DATAFILE - DataFile Management. HINT: BNF for Alias usage. (<alias> [WMIObject] | <alias> [<path where>] | [<alias>] <path where>) [<verb clause>]. USAGE: DATAFILE ASSOC [<format specifier>] DATAFILE CALL <method name> [<actual param list>] DATAFILE CREATE <assign list> DATAFILE DELETE DATAFILE GET [<property list>] [<get switches>] DATAFILE LIST [<list format>] [<list switches>] C:\Users\YourUser>wmic datafile list ^C C:\Users\YourUser>wmic datafile list brief Node - YourComputerName ERROR: Description = Quota violation C:\Users\YourUser>wmic Alias datafile list brief FriendlyName PWhere Target DataFile Where Name = '#' Select * from CIM_DataFile C:\Users\YourUser>wmic datafile get/? Property get operations. USAGE: GET [<property list>] [<get switches>] NOTE: <property list> ::= <property name> | <property name>, <property list> The following properties are available: Property Type Operation ======== ==== ========= Access Rights N/A N/A Caption N/A N/A Class Name N/A N/A Compressed N/A N/A Compression Method N/A N/A Computer System Class Name N/A N/A Computer System Name N/A N/A Creation Date N/A N/A Current File Open Count N/A N/A Description N/A N/A Drive N/A N/A Eight Dot Three File Name N/A N/A Encrypted N/A N/A Encryption Method N/A N/A File Extension N/A N/A File Name N/A N/A File System Class Name N/A N/A File System Name N/A N/A File Type N/A N/A Hidden N/A N/A Install Date N/A N/A Last Accessed N/A N/A Last Modified N/A N/A Manufacturer N/A N/A Name N/A N/A Path N/A N/A Readable N/A N/A Should Be Archived N/A N/A Size N/A N/A Status N/A N/A System File N/A N/A Version N/A N/A Writeable N/A N/A The following GET switches are available: /VALUE - Return value. /ALL(default) - Return the data and metadata for the attribute. /TRANSLATE:<table name> - Translate output via values from <table name>. /EVERY:<interval> [/REPEAT:<repeat count>] - Returns value every (X interval) seconds, If /REPEAT specified the command is executed <repeat count> times. /FORMAT:<format specifier> - Keyword/XSL filename to process the XML results. NOTE: Order of /TRANSLATE and /FORMAT switches influences the appearance of output. Case1: If /TRANSLATE precedes /FORMAT, then translation of results will be followed by formatting. Case2: If /TRANSLATE succeeds /FORMAT, then translation of the formatted results will be done. C:\Users\YourUser>WMIC DATAFILE WHERE "PATH='C:\Users\YourUser\Desktop\file.txt'" GET CreationDate,Caption Node - YourComputerName ERROR: Description = Invalid query C:\Users\YourUser>WMIC DATAFILE WHERE "PATH='C:\\Users\\YourUser\\Desktop\\file.txt'" GET CreationDate,Caption No Instance(s) Available. C:\Users\YourUser>WMIC DATAFILE WHERE "NAME='C:\\Users\\YourUser\\Desktop\\file.txt'" GET CreationDate,Caption Caption CreationDate c:\users\youruser\desktop\file.txt 20190622075702.461603+420 C:\Users\YourUser>WMIC DATAFILE WHERE "NAME='C:\\Users\\YourUser\\Desktop\\file.txt'" GET CreationDate,Caption /VALUE Caption=c:\users\youruser\desktop\file.txt CreationDate=20190622075702.461603+420 C:\Users\YourUser>for/? Runs a specified command for each file in a set of files. FOR %variable IN (set) DO command [command-parameters] %variable Specifies a single letter replaceable parameter. (set) Specifies a set of one or more files. Wildcards may be used. command Specifies the command to carry out for each file. command-parameters Specifies parameters or switches for the specified command. To use the FOR command in a batch program, specify %%variable instead of %variable. Variable names are case sensitive, so %i is different from %I. If Command Extensions are enabled, the following additional forms of the FOR command are supported: FOR /D %variable IN (set) DO command [command-parameters] If set contains wildcards, then specifies to match against directory names instead of file names. FOR /R [[drive:]path] %variable IN (set) DO command [command-parameters] Walks the directory tree rooted at [drive:]path, executing the FOR statement in each directory of the tree. If no directory specification is specified after /R then the current directory is assumed. If set is just a single period (.) character then it will just enumerate the directory tree. FOR /L %variable IN (start,step,end) DO command [command-parameters] The set is a sequence of numbers from start to end, by step amount. So (1,1,5) would generate the sequence 1 2 3 4 5 and (5,-1,1) would generate the sequence (5 4 3 2 1) FOR /F ["options"] %variable IN (file-set) DO command [command-parameters] FOR /F ["options"] %variable IN ("string") DO command [command-parameters] FOR /F ["options"] %variable IN ('command') DO command [command-parameters] or, if usebackq option present: FOR /F ["options"] %variable IN (file-set) DO command [command-parameters] FOR /F ["options"] %variable IN ('string') DO command [command-parameters] FOR /F ["options"] %variable IN (`command`) DO command [command-parameters] file-set is one or more file names. Each file is opened, read and processed before going on to the next file in file-set. Processing consists of reading in the file, breaking it up into individual lines of text and then parsing each line into zero or more tokens. The body of the for loop is then called with the variable value(s) set to the found token string(s). By default, /F passes the first blank separated token from each line of each file. Blank lines are skipped. You can override the default parsing behavior by specifying the optional "options" parameter. This is a quoted string which contains one or more keywords to specify different parsing options. The keywords are: eol=c - specifies an end of line comment character (just one) skip=n - specifies the number of lines to skip at the beginning of the file. delims=xxx - specifies a delimiter set. This replaces the default delimiter set of space and tab. tokens=x,y,m-n - specifies which tokens from each line are to be passed to the for body for each iteration. This will cause additional variable names to be allocated. The m-n form is a range, specifying the mth through the nth tokens. If the last character in the tokens= string is an asterisk, then an additional variable is allocated and receives the remaining text on the line after the last token parsed. usebackq - specifies that the new semantics are in force, where a back quoted string is executed as a command and a single quoted string is a literal string command and allows the use of double quotes to quote file names in file-set. Some examples might help: FOR /F "eol=; tokens=2,3* delims=, " %i in (myfile.txt) do @echo %i %j %k would parse each line in myfile.txt, ignoring lines that begin with a semicolon, passing the 2nd and 3rd token from each line to the for body, with tokens delimited by commas and/or spaces. Notice the for body statements reference %i to get the 2nd token, %j to get the 3rd token, and %k to get all remaining tokens after the 3rd. For file names that contain spaces, you need to quote the filenames with double quotes. In order to use double quotes in this manner, you also need to use the usebackq option, otherwise the double quotes will be interpreted as defining a literal string to parse. %i is explicitly declared in the for statement and the %j and %k are implicitly declared via the tokens= option. You can specify up to 26 tokens via the tokens= line, provided it does not cause an attempt to declare a variable higher than the letter 'z' or 'Z'. Remember, FOR variables are single-letter, case sensitive, global, and you can't have more than 52 total active at any one time. You can also use the FOR /F parsing logic on an immediate string, by making the file-set between the parenthesis a quoted string, using single quote characters. It will be treated as a single line of input from a file and parsed. Finally, you can use the FOR /F command to parse the output of a command. You do this by making the file-set between the parenthesis a back quoted string. It will be treated as a command line, which is passed to a child CMD.EXE and the output is captured into memory and parsed as if it was a file. So the following example: FOR /F "usebackq delims==" %i IN (`set`) DO @echo %i would enumerate the environment variable names in the current environment. In addition, substitution of FOR variable references has been enhanced. You can now use the following optional syntax: %~I - expands %I removing any surrounding quotes (") %~fI - expands %I to a fully qualified path name %~dI - expands %I to a drive letter only %~pI - expands %I to a path only %~nI - expands %I to a file name only %~xI - expands %I to a file extension only %~sI - expanded path contains short names only %~aI - expands %I to file attributes of file %~tI - expands %I to date/time of file %~zI - expands %I to size of file %~$PATH:I - searches the directories listed in the PATH environment variable and expands %I to the fully qualified name of the first one found. If the environment variable name is not defined or the file is not found by the search, then this modifier expands to the empty string The modifiers can be combined to get compound results: %~dpI - expands %I to a drive letter and path only %~nxI - expands %I to a file name and extension only %~fsI - expands %I to a full path name with short names only %~dp$PATH:I - searches the directories listed in the PATH environment variable for %I and expands to the drive letter and path of the first one found. %~ftzaI - expands %I to a DIR like output line In the above examples %I and PATH can be replaced by other valid values. The %~ syntax is terminated by a valid FOR variable name. Picking upper case variable names like %I makes it more readable and avoids confusion with the modifiers, which are not case sensitive. C:\Users\YourUser>


สีแดง คือ ตัวอย่างคำสั่งที่ใช้งานไม่ได้
สีเขียว คือ สิ่งที่ควรดูและทำความเข้าใจเพื่อนำไปใช้ในกรณีของคุณ

อ้างอิง CIM_DataFile class
https://docs.microsoft.com/en-us/windows/win32/cimwin32prov/cim-datafile

Quote:
สิ่งสำคัญที่ควรคำนึง:
1. escape string ใน <command> ใช้ ^
2. path ไปยังไฟล์หรือไดเรกทอรีใช้ \\ ไม่ใช่ \


แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2020-09-30 15:55:03 By : PhrayaDev
 


 

No. 5

Guest


ตอบความคิดเห็นที่ : 4 เขียนโดย : PhrayaDev เมื่อวันที่ 2020-09-30 15:55:03
รายละเอียดของการตอบ ::

ขอบคุณมากครับ

อัดแน่นจริงๆ


แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2020-10-02 13:27:51 By : mini
 


 

No. 6



โพสกระทู้ ( 1,458 )
บทความ ( 0 )



สถานะออฟไลน์
Twitter Facebook Blogger

ตอบความคิดเห็นที่ : 5 เขียนโดย : mini เมื่อวันที่ 2020-10-02 13:27:51
รายละเอียดของการตอบ ::
ลืมบอกอีกอย่างครับ (เผื่อยังไม่รู้ )
ตัวแปรและพารามิเตอร์ใช้ต่างกันสองกรณี คือ
1. % เมื่อพิมพ์(ทดสอบ)คำสั่งในเป็น line ด้วย Command Prompt
2. %% ใช้เมื่ออยู่ใน (batch) file

แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2020-10-02 13:45:27 By : PhrayaDev
 

   

ค้นหาข้อมูล


   
 

แสดงความคิดเห็น
Re : Batch file ผมต้องการ copy file ที่มีอายุเกิน 1 วันแต่ไม่เกิน 15 วัน เขียนยังไงครับ
 
 
รายละเอียด
 
ตัวหนา ตัวเอียง ตัวขีดเส้นใต้ ตัวมีขีดกลาง| ตัวเรืองแสง ตัวมีเงา ตัวอักษรวิ่ง| จัดย่อหน้าอิสระ จัดย่อหน้าชิดซ้าย จัดย่อหน้ากึ่งกลาง จัดย่อหน้าชิดขวา| เส้นขวาง| ขนาดตัวอักษร แบบตัวอักษร
ใส่แฟลช ใส่รูป ใส่ไฮเปอร์ลิ้งค์ ใส่อีเมล์ ใส่ลิ้งค์ FTP| ใส่แถวของตาราง ใส่คอลัมน์ตาราง| ตัวยก ตัวห้อย ตัวพิมพ์ดีด| ใส่โค้ด ใส่การอ้างถึงคำพูด| ใส่ลีสต์
smiley for :lol: smiley for :ken: smiley for :D smiley for :) smiley for ;) smiley for :eek: smiley for :geek: smiley for :roll: smiley for :erm: smiley for :cool: smiley for :blank: smiley for :idea: smiley for :ehh: smiley for :aargh: smiley for :evil:
Insert PHP Code
Insert ASP Code
Insert VB.NET Code Insert C#.NET Code Insert JavaScript Code Insert C#.NET Code
Insert Java Code
Insert Android Code
Insert Objective-C Code
Insert XML Code
Insert SQL Code
Insert Code
เพื่อความเรียบร้อยของข้อความ ควรจัดรูปแบบให้พอดีกับขนาดของหน้าจอ เพื่อง่ายต่อการอ่านและสบายตา และตรวจสอบภาษาไทยให้ถูกต้อง

อัพโหลดแทรกรูปภาพ

Notice

เพื่อความปลอดภัยของเว็บบอร์ด ไม่อนุญาติให้แทรก แท็ก [img]....[/img] โดยการอัพโหลดไฟล์รูปจากที่อื่น เช่นเว็บไซต์ ฟรีอัพโหลดต่าง ๆ
อัพโหลดแทรกรูปภาพ ให้ใช้บริการอัพโหลดไฟล์ของไทยครีเอท และตัดรูปภาพให้พอดีกับสกรีน เพื่อความโหลดเร็วและไฟล์ไม่ถูกลบทิ้ง

   
  เพื่อความปลอดภัยและการตรวจสอบ กระทู้ที่แทรกไฟล์อัพโหลดไฟล์จากที่อื่น อาจจะถูกลบทิ้ง
 
โดย
อีเมล์
บวกค่าให้ถูก
<= ตัวเลขฮินดูอารบิก เช่น 123 (หรือล็อกอินเข้าระบบสมาชิกเพื่อไม่ต้องกรอก)







Exchange: นำเข้าสินค้าจากจีน, Taobao, เฟอร์นิเจอร์, ของพรีเมี่ยม, ร่ม, ปากกา, power bank, แฟลชไดร์ฟ, กระบอกน้ำ

Load balance : Server 05
ThaiCreate.Com Logo
© www.ThaiCreate.Com. 2003-2024 All Rights Reserved.
ไทยครีเอทบริการ จัดทำดูแลแก้ไข Web Application ทุกรูปแบบ (PHP, .Net Application, VB.Net, C#)
[Conditions Privacy Statement] ติดต่อโฆษณา 081-987-6107 อัตราราคา คลิกที่นี่