Try fsck after unmounting the partition. First find out the partition to check Code: mount This will list every mounted partition and folder. Identify the partition mounted at /home/user/MyDocs, may be /dev/mmcblk0p1, the default.
mount
Unmount the partition Code: umount /dev/mmcblk0p1 #OrYourPartitonHere
umount /dev/mmcblk0p1 #OrYourPartitonHere
Check the file system Code: fsck -af /dev/mmcblk0p1
fsck -af /dev/mmcblk0p1
Then, if everything goes well, mount it back to its place Code: mount /home/user/MyDocs -o rw
mount /home/user/MyDocs -o rw