Lazarus
Home
Help
TinyPortal
Search
Login
Register
Lazarus
»
Forum
»
Programming
»
General
»
Cut files to Clipboard (in Windows)
Free Pascal
Website
Downloads
Wiki
Documentation
Bugtracker
Mailing List
Lazarus
Website
Downloads (Laz+FPC)
Packages (OPM)
FAQ
Wiki
Documentation (RTL/FCL/LCL)
Bugtracker
CCR Bugs
GIT
Mailing List
Other languages
Foundation
Website
Useful Wiki Links
Project Roadmap
Getting the Source
Screenshots
How to use the forum
About donations (wiki)
Bookstore
Computer Math and Games in Pascal
(preview)
Lazarus Handbook
Search
Advanced search
Recent
TPairSplitter control lea...
by
wp
[
Today
at 11:31:27 am]
Use mORMot2 to export PDF...
by
rvk
[
Today
at 10:13:38 am]
Xtensa-freertos wiki
by
ccrause
[
Today
at 09:48:49 am]
Why MaxDouble does not eq...
by
jollytall
[
Today
at 09:40:23 am]
Building FPC 3.2.2 on Deb...
by
MarkMLl
[
Today
at 09:27:48 am]
Win SHBrowseForFolder API...
by
d2010
[
Today
at 09:02:38 am]
Class helpers cannot have...
by
Thaddy
[
Today
at 08:51:02 am]
Not able to install "fpc-...
by
dbannon
[
Today
at 07:19:07 am]
[Solved] Package Laz_Syna...
by
Fibonacci
[
Today
at 03:40:50 am]
Making a plea :)
by
dbannon
[
Today
at 02:25:25 am]
Q Win SHBrowseForFolder A...
by
ASerge
[
Today
at 02:18:29 am]
Reintroduce events and pr...
by
Joanna
[
Today
at 01:58:28 am]
Besides TForm is there a ...
by
mas steindorff
[
Today
at 12:40:09 am]
About $ and Cents - Dbf L...
by
Fibonacci
[
Today
at 12:01:43 am]
Is there a TPanel substit...
by
Sieben
[October 04, 2024, 11:47:42 pm]
FPC 3.2.2 / Lazarus 2.2.6...
by
Fred vS
[October 04, 2024, 09:58:43 pm]
Why I can not set affinit...
by
440bx
[October 04, 2024, 09:28:07 pm]
Feature announcement: Imp...
by
corpsman
[October 04, 2024, 08:48:30 pm]
Trying to tweak the bsTri...
by
carl_caulkett
[October 04, 2024, 08:19:54 pm]
AY_FLY Library
by
Gigatron
[October 04, 2024, 07:58:37 pm]
Error code documentation
by
Ștefan-Iulian Alecu
[October 04, 2024, 07:09:10 pm]
code seems bulky
by
Ștefan-Iulian Alecu
[October 04, 2024, 07:07:19 pm]
Еличка - a simple calcula...
by
CM630
[October 04, 2024, 06:12:07 pm]
standard or third party f...
by
Packs
[October 04, 2024, 03:41:49 pm]
Working MIDI app for the ...
by
carl_caulkett
[October 04, 2024, 03:29:15 pm]
« previous
next »
Print
Pages: [
1
]
Author
Topic: Cut files to Clipboard (in Windows) (Read 1354 times)
domasz
Hero Member
Posts: 529
Cut files to Clipboard (in Windows)
«
on:
May 23, 2023, 12:38:19 pm »
Here I found a nice piece of code which copies list of files to clipboard and then those files can be pasted in a Windows Explorer window:
https://forum.lazarus.freepascal.org/index.php/topic,51601.msg379065.html#msg379065
But how do I do the same but instead of "copy" I need "cut", so files are not copied but moved?
Logged
Remy Lebeau
Hero Member
Posts: 1408
Re: Cut files to Clipboard (in Windows)
«
Reply #1 on:
May 24, 2023, 09:32:37 pm »
Quote from: domasz on May 23, 2023, 12:38:19 pm
But how do I do the same but instead of "copy" I need "cut", so files are not copied but moved?
Microsoft's
Handling Delete-on-Paste Operations
documentation explains how to accomplish this.
You can still use the same
CF_HDROP
data format for the file paths, but you will have to wrap that data inside of an object that implements the
IDataObject
interface, so that the paster can communicate back to you whether the paste was successful or not, and whether the files were copied or moved. If the paste was successful but the files were copied, you will have to delete the source files yourself.
«
Last Edit: May 24, 2023, 09:39:37 pm by Remy Lebeau
»
Logged
Remy Lebeau
Lebeau Software
- Owner, Developer
Internet Direct (Indy)
- Admin, Developer (
Support forum
)
domasz
Hero Member
Posts: 529
Re: Cut files to Clipboard (in Windows)
«
Reply #2 on:
May 26, 2023, 11:03:24 am »
A lot more complicated than it should be. Thanks for the info!
Logged
KodeZwerg
Hero Member
Posts: 2269
Fifty shades of code.
Re: Cut files to Clipboard (in Windows)
«
Reply #3 on:
May 26, 2023, 01:34:06 pm »
Since I never needed such in my applications, I can't help much but a good starting point to be used as a tutorial I found
here
.
I hope it helps.
Logged
«
Last Edit:
Tomorrow
at 31:76:97 xm by
KodeZwerg
»
jamie
Hero Member
Posts: 6556
Re: Cut files to Clipboard (in Windows)
«
Reply #4 on:
May 26, 2023, 11:13:16 pm »
If you truly want to move files, this means the source is going to be deleted.
Windows has "MoveFileEx" A or the W version.
Also, you can use the "ShFileOperation" which allows you to do all kinds of juicy stuff.
Logged
The only true wisdom is knowing you know nothing
domasz
Hero Member
Posts: 529
Re: Cut files to Clipboard (in Windows)
«
Reply #5 on:
May 29, 2023, 02:48:19 pm »
Thanks, I'll try!
Logged
Print
Pages: [
1
]
« previous
next »
Lazarus
»
Forum
»
Programming
»
General
»
Cut files to Clipboard (in Windows)
TinyPortal
© 2005-2018