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
IRC channel
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
TBufDataset is behaving i...
by
Gustavo 'Gus' Carreno
[
Today
at 01:00:24 am]
Hypocycloid demo
by
Boleeman
[
Today
at 12:50:10 am]
GTK 3 Widget Set Status?
by
sysrpl
[September 26, 2023, 11:44:15 pm]
FPC 3.2.2 / Lazarus 2.2.6...
by
TRon
[September 26, 2023, 10:39:47 pm]
[SOLVED] Components with ...
by
Kurt
[September 26, 2023, 10:39:37 pm]
Cannot get file opening e...
by
Josh
[September 26, 2023, 08:59:47 pm]
Lazarus.exe does nothing ...
by
wp
[September 26, 2023, 08:23:50 pm]
Is it possible to jump in...
by
Dzandaa
[September 26, 2023, 07:54:12 pm]
is there a way to Forward...
by
440bx
[September 26, 2023, 07:24:23 pm]
weirdness with fnmatch (l...
by
robert rozee
[September 26, 2023, 05:54:06 pm]
SaveDialog asks for filen...
by
gjunk
[September 26, 2023, 03:50:26 pm]
Saving a Form state (rela...
by
Curt Carpenter
[September 26, 2023, 03:50:01 pm]
Stem and Leaf Plot and In...
by
Zvoni
[September 26, 2023, 03:43:51 pm]
Creating a new unit out o...
by
Okoba
[September 26, 2023, 03:13:28 pm]
Large system, i2C to go w...
by
pascalbythree
[September 26, 2023, 02:14:59 pm]
Linker error with LLVM 15...
by
ChrisR
[September 26, 2023, 01:36:49 pm]
Class Change Color Edit a...
by
emivaldo
[September 26, 2023, 01:19:39 pm]
[fpspreadsheet] Cannot co...
by
veb86
[September 26, 2023, 01:07:53 pm]
LazPaint Plugins
by
circular
[September 26, 2023, 01:02:10 pm]
[SOLVED] QRCode component
by
Pe3s
[September 26, 2023, 12:35:31 pm]
[solved] Confusing scope(...
by
TRon
[September 26, 2023, 12:08:06 pm]
[solved] Website(s) where...
by
TRon
[September 26, 2023, 12:00:01 pm]
any workaround of nested ...
by
powerpcer
[September 26, 2023, 11:12:52 am]
DBVirtualGrid - processin...
by
wp
[September 26, 2023, 11:08:54 am]
Improvement of DoCopyProp...
by
lagprogramming
[September 26, 2023, 09:51:24 am]
« previous
next »
Print
Pages: [
1
]
Author
Topic: Cut files to Clipboard (in Windows) (Read 868 times)
domasz
Sr. Member
Posts: 275
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: 1235
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
Sr. Member
Posts: 275
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: 1644
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 by
KodeZwerg
»
jamie
Hero Member
Posts: 5691
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
Sr. Member
Posts: 275
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