The way @Steve Robillard helped me with the full path between double quotes
sudo debugfs -R "stat /home/username/....file" /dev/mmcblk0p2 | grep crtime
I gave a try with iNodes too
ls -i
#lists the iNode number befor the files/folders
#where **401303** is an iNode of one of my files
this too following commands also worked for me:
sudo debugfs -R "stat <401303>" /dev/mmcblk0p2 | grep crtime
sudo debugfs -R 'stat <"'401303'">' /dev/mmcblk0p2 | grep crtime
Important is the quotation. The simple quote could cose difficulties. In case you are writing a script on different shell systems it might be useful to know both of them.
And the path from the end of commands you can find by this command where the last row is important
sudo fdisk -l | grep "mmcb\|Linux"
#results the followin rows:
Disk /dev/mmcblk0: 14.4 GiB, 15489564672 bytes, 30253056 sectors
/dev/mmcblk0p1 8192 137215 129024 63M c W95 FAT32 (LBA)
/dev/mmcblk0p2 137216 30253055 30115840 14.4G 83 Linux
sudo fdisk -l | grep "Linux" | cut -d ' ' -f1
results: /dev/mmcblk0p2
Thanks Steve